*,
*::before,
*::after {
  box-sizing: border-box;
  content: none;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
}

.site-head {
  background: linear-gradient(135deg, #1e1412 0%, #2c1e17 55%, #3a2418 100%);
  font-family: 'Alegreya', serif;
  position: relative;
  overflow: hidden;
}

.site-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C37E49 0%, #D7B6A6 60%, #C37E49 100%);
  pointer-events: none;
}

.head-upper {
  max-width: 1366px;
  margin: 0 auto;
  padding: 24px 40px 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  justify-content: space-between;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-frame {
  width: 44px;
  height: 44px;
  border: 2px solid #C37E49;
  border-radius: 6px 2px 6px 2px;
  background: #FCF8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09), inset 0 0 0 1px rgba(195, 126, 73, 0.18);
  flex-shrink: 0;
}

.logo-frame img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
  color: #FCF8F8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(195, 126, 73, 0.5) 0%, rgba(215, 182, 166, 0.15) 100%);
  border: none;
  margin: 0;
}

.brand-credential {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #D7B6A6;
  letter-spacing: 0.01em;
}

.head-nav-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 4px;
}

.head-contact-strip {
  display: flex;
  align-items: center;
  gap: 24px;
}

.head-phone {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #D7B6A6;
  text-decoration: none;
  transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.head-phone:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 126, 73, 0.45);
  border-radius: 2px;
}

.head-phone:hover {
  color: #FCF8F8;
}

.head-email {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(215, 182, 166, 0.75);
  text-decoration: none;
  transition: color 0.15s ease-in;
}

.head-email:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 126, 73, 0.45);
  border-radius: 2px;
}

.head-email:hover {
  color: #D7B6A6;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-family: 'Alegreya', serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(252, 248, 248, 0.78);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.1s cubic-bezier(0.4, 0, 1, 1), background 0.1s cubic-bezier(0.4, 0, 1, 1);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: #FCF8F8;
  background: rgba(195, 126, 73, 0.14);
}

.nav-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 126, 73, 0.45);
}

.nav-link.active {
  color: #C37E49;
  background: rgba(195, 126, 73, 0.1);
}

.nav-sep {
  width: 1px;
  height: 16px;
  background: rgba(215, 182, 166, 0.25);
  flex-shrink: 0;
}

.head-cta-btn {
  font-family: 'Alegreya', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #1e1412;
  background: #C37E49;
  border: none;
  border-radius: 4px 2px 4px 2px;
  padding: 8px 24px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  box-shadow: 1px 3px 5px 0 rgba(195, 126, 73, 0.05), 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
  transition: background 0.12s cubic-bezier(0.4, 0, 1, 1), width 0.12s cubic-bezier(0.4, 0, 1, 1), padding 0.12s cubic-bezier(0.4, 0, 1, 1);
  white-space: nowrap;
}

.head-cta-btn:hover {
  background: #b36e3a;
  padding-left: 32px;
  padding-right: 32px;
}

.head-cta-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 126, 73, 0.55);
}

.head-lower {
  max-width: 1366px;
  margin: 0 auto;
  padding: 12px 40px 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(215, 182, 166, 0.12);
  margin-top: 12px;
}

.head-tagline {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(215, 182, 166, 0.55);
  font-style: italic;
}

.head-addr {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(215, 182, 166, 0.45);
}

.site-foot {
  background: #FCF8F8;
  font-family: 'Alegreya', serif;
  border-top: 2px solid rgba(195, 126, 73, 0.18);
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11) inset;
}

.foot-upper {
  max-width: 1366px;
  margin: 0 auto;
  padding: 40px 40px 24px 40px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 160px;
}

.foot-logo-frame {
  width: 40px;
  height: 40px;
  border: 2px solid #C37E49;
  border-radius: 2px 6px 2px 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 3px 5px 0 rgba(195, 126, 73, 0.05), inset 0 0 0 1px rgba(195, 126, 73, 0.12);
}

.foot-logo-frame img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.foot-brand-name {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
  color: #2c1e17;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.foot-brand-slogan {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(44, 30, 23, 0.55);
  font-style: italic;
}

.foot-nav-cols {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex: 1;
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}

.foot-col-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #C37E49;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.foot-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(44, 30, 23, 0.72);
  text-decoration: none;
  transition: color 0.1s cubic-bezier(0.4, 0, 1, 1);
  padding: 4px 0;
  display: inline-block;
}

.foot-link:hover {
  color: #C37E49;
}

.foot-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 126, 73, 0.4);
  border-radius: 2px;
}

.foot-contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.foot-contact-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #C37E49;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.foot-contact-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(44, 30, 23, 0.72);
  text-decoration: none;
  display: block;
  transition: color 0.12s ease-in;
}

.foot-contact-item:hover {
  color: #C37E49;
}

.foot-contact-item:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 126, 73, 0.4);
  border-radius: 2px;
}

.foot-addr-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(44, 30, 23, 0.55);
}

.foot-lower {
  max-width: 1366px;
  margin: 0 auto;
  padding: 12px 40px 24px 40px;
  border-top: 1px solid rgba(195, 126, 73, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.foot-copy {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(44, 30, 23, 0.45);
}

.foot-policy-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.foot-policy-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(44, 30, 23, 0.5);
  text-decoration: none;
  transition: color 0.1s cubic-bezier(0.4, 0, 1, 1);
  padding: 4px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.foot-policy-link:hover {
  color: #C37E49;
}

.foot-policy-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 126, 73, 0.4);
  border-radius: 2px;
}

.cookie-tray {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
  background: #fff;
  border-radius: 6px 2px 6px 2px;
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11), 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
  border-top: 3px solid #C37E49;
  padding: 24px;
  z-index: 1000;
  font-family: 'Alegreya', serif;
}

.cookie-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #2c1e17;
  margin-bottom: 12px;
}

.cookie-uses {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(44, 30, 23, 0.72);
  padding-left: 16px;
  margin: 0 0 12px 0;
}

.cookie-uses li {
  margin-bottom: 4px;
}

.cookie-opt-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.cookie-opt-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(44, 30, 23, 0.72);
  cursor: pointer;
}

.cookie-opt-check {
  width: 18px;
  height: 18px;
  accent-color: #C37E49;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-btns {
  display: flex;
  gap: 12px;
}

.cookie-btn-accept {
  font-family: 'Alegreya', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #1e1412;
  background: transparent;
  border: 2px solid #C37E49;
  border-radius: 4px;
  padding: 8px 24px;
  cursor: pointer;
  flex: 1;
  min-height: 44px;
  transition: background 0.12s cubic-bezier(0.4, 0, 1, 1), color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.cookie-btn-accept:hover {
  background: #C37E49;
  color: #fff;
}

.cookie-btn-accept:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 126, 73, 0.45);
}

.cookie-btn-decline {
  font-family: 'Alegreya', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(44, 30, 23, 0.72);
  background: transparent;
  border: 2px solid rgba(195, 126, 73, 0.35);
  border-radius: 4px;
  padding: 8px 24px;
  cursor: pointer;
  flex: 1;
  min-height: 44px;
  transition: border-color 0.12s cubic-bezier(0.4, 0, 1, 1), color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.cookie-btn-decline:hover {
  border-color: #C37E49;
  color: #C37E49;
}

.cookie-btn-decline:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 126, 73, 0.35);
}

@media (max-width: 900px) {
  .head-upper {
    flex-direction: column;
    gap: 24px;
    padding: 24px 24px 0 24px;
  }

  .head-nav-block {
    align-items: flex-start;
  }

  .head-lower {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 24px 24px;
  }

  .foot-upper {
    flex-direction: column;
    gap: 24px;
    padding: 40px 24px 24px 24px;
  }

  .foot-lower {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 24px 24px;
  }

  .cookie-tray {
    width: calc(100vw - 48px);
    right: 24px;
    left: 24px;
  }
}

.hk-legal-body {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #2c1f14;
  line-height: 1.9;
  font-size: 16px;
}

.hk-legal-body ul,
.hk-legal-body ol {
  padding-left: 24px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.hk-legal-body ul {
  list-style: none;
  padding-left: 0;
}

.hk-legal-body ul li {
  padding-left: 24px;
  position: relative;
}

.hk-legal-body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #C37E49;
  transform: translateY(-50%);
}

.hk-legal-body ol {
  list-style: decimal;
  list-style-position: outside;
}

.hk-legal-body ol li {
  padding-left: 8px;
}

.hk-legal-body li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.9;
  color: #2c1f14;
}

.hk-legal-body li::marker {
  color: #C37E49;
  font-weight: 600;
}

.hk-legal-body strong,
.hk-legal-body b {
  font-weight: 700;
  color: #1e1208;
}

.hk-legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  margin-bottom: 40px;
  font-size: 16px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
}

.hk-legal-body thead {
  background-color: #C37E49;
}

.hk-legal-body thead th {
  color: #FCF8F8;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  padding: 12px 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
}

.hk-legal-body tbody tr {
  border-bottom: 1px solid #e8d8cc;
  transition: background-color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.hk-legal-body tbody tr:last-child {
  border-bottom: none;
}

.hk-legal-body tbody tr:nth-child(even) {
  background-color: #FCF8F8;
}

.hk-legal-body tbody tr:hover {
  background-color: #f5ede6;
}

.hk-legal-body td {
  padding: 12px 24px;
  color: #2c1f14;
  line-height: 1.9;
  vertical-align: top;
  border-right: 1px solid #e8d8cc;
}

.hk-legal-body td:last-child {
  border-right: none;
}

.hk-legal-body th {
  border-right: 1px solid rgba(252, 248, 248, 0.25);
}

.hk-legal-body th:last-child {
  border-right: none;
}

.hk-legal-body hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, #C37E49, #D7B6A6, #FCF8F8);
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 2px;
  opacity: 0.6;
}

.hk-legal-body div {
  margin-bottom: 24px;
}

.hk-legal-body div:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hk-legal-body {
    padding: 40px 24px;
  }

  .hk-legal-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hk-legal-body thead th,
  .hk-legal-body td {
    padding: 12px 12px;
    white-space: nowrap;
  }

  .hk-legal-body ul,
  .hk-legal-body ol {
    padding-left: 12px;
  }
}

@media (max-width: 480px) {
  .hk-legal-body {
    padding: 24px 12px;
  }

  .hk-legal-body thead th {
    font-size: 16px;
  }
}

.innov {
  background: #FCF8F8;
  overflow-x: clip;
}

.innov .step-num {
  font-size: 68px;
  line-height: 1.1;
  color: #C37E49;
  opacity: 0.18;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.innov .overline {
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C37E49;
  display: block;
  margin-bottom: 8px;
}

.innov .title-band {
  background: linear-gradient(180deg, transparent 0%, transparent 38%, #D7B6A6 62%, #C37E49 100%);
  padding: 80px 24px 40px;
  position: relative;
  overflow: hidden;
}

.innov .title-band-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px;
}

.innov .title-band-text {
  flex: 1 1 0;
  position: relative;
  z-index: 1;
}

.innov .title-band-text h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #FCF8F8;
  margin: 0 0 24px;
}

.innov .title-band-text h1 .marker {
  background: #C37E49;
  box-shadow: inset 0 -6px 0 0 rgba(195, 126, 73, 0.35);
  padding: 0 8px;
  border-radius: 2px;
  color: #FCF8F8;
  display: inline;
}

.innov .title-action {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #FCF8F8;
  color: #C37E49;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid #C37E49;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
  transition: padding 0.14s cubic-bezier(0.4, 0, 1, 1), background 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.innov .title-action:hover {
  background: #C37E49;
  color: #FCF8F8;
  padding: 12px 32px;
}

.innov .title-action:focus-visible {
  outline: 3px solid #C37E49;
  outline-offset: 3px;
}

.innov .title-img-wrap {
  width: 340px;
  flex-shrink: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.innov .title-img-wrap img {
  width: 340px;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(1) contrast(1.18);
  transition: transform 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.innov .title-img-wrap:hover img {
  transform: scale(1.04);
}

.innov .title-geo-a {
  position: absolute;
  top: 24px;
  right: 80px;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(215, 182, 166, 0.22);
  border-radius: 20px;
  transform: rotate(22deg);
  pointer-events: none;
}

.innov .title-geo-b {
  position: absolute;
  bottom: 40px;
  left: 60px;
  width: 54px;
  height: 54px;
  background: rgba(195, 126, 73, 0.09);
  border-radius: 6px;
  transform: rotate(-14deg);
  pointer-events: none;
}

.innov .process-section {
  padding: 80px 24px;
  background: #FCF8F8;
  position: relative;
}

.innov .process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(215, 182, 166, 0.22) 0%, transparent 80%);
  pointer-events: none;
  border-radius: 50%;
}

.innov .process-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.innov .process-head {
  max-width: 560px;
  margin-bottom: 40px;
}

.innov .process-head h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #2a1a0e;
  margin: 0 0 12px;
}

.innov .process-head p {
  font-size: 16px;
  line-height: 1.9;
  color: #4a3020;
  margin: 0;
}

.innov .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.innov .step-card {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 1px 3px 5px 0 rgba(195, 126, 73, 0.05);
  border-top: 3px solid #D7B6A6;
  position: relative;
  transition: box-shadow 0.15s cubic-bezier(0.4, 0, 1, 1), transform 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.innov .step-card:hover {
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11);
  transform: translateY(-2px);
}

.innov .step-card h4 {
  font-size: 16px;
  line-height: 1.5;
  color: #2a1a0e;
  margin: 0 0 8px;
  font-weight: 700;
}

.innov .step-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #4a3020;
  margin: 0;
}

@keyframes innov-wave-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.innov .step-card:nth-child(1) {
  animation: innov-wave-in 0.18s cubic-bezier(0.4, 0, 1, 1) 0.05s both;
}

.innov .step-card:nth-child(2) {
  animation: innov-wave-in 0.18s cubic-bezier(0.4, 0, 1, 1) 0.10s both;
}

.innov .step-card:nth-child(3) {
  animation: innov-wave-in 0.18s cubic-bezier(0.4, 0, 1, 1) 0.15s both;
}

.innov .step-card:nth-child(4) {
  animation: innov-wave-in 0.18s cubic-bezier(0.4, 0, 1, 1) 0.20s both;
}

.innov .step-card:nth-child(5) {
  animation: innov-wave-in 0.18s cubic-bezier(0.4, 0, 1, 1) 0.25s both;
}

.innov .step-card:nth-child(6) {
  animation: innov-wave-in 0.18s cubic-bezier(0.4, 0, 1, 1) 0.30s both;
}

.innov .team-section {
  padding: 80px 24px;
  background: linear-gradient(160deg, #FCF8F8 0%, #D7B6A6 55%, #C37E49 100%);
  position: relative;
  overflow: hidden;
}

.innov .team-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 220px;
  height: 220px;
  border: 3px solid rgba(252, 248, 248, 0.18);
  border-radius: 20px;
  transform: rotate(30deg);
  pointer-events: none;
}

.innov .team-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.innov .team-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.innov .team-sidebar h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #2a1a0e;
  margin: 0 0 12px;
}

.innov .team-sidebar p {
  font-size: 16px;
  line-height: 1.9;
  color: #3a2010;
  margin: 0;
}

.innov .team-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
}

.innov .team-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.innov .team-img-wrap:hover img {
  transform: scale(1.04);
}

.innov .team-portraits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.innov .portrait-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.innov .portrait-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: rgba(252, 248, 248, 0.82);
  border-radius: 6px;
  padding: 12px;
  box-shadow: 1px 3px 5px 0 rgba(195, 126, 73, 0.05);
  flex: 1 1 0;
  transition: box-shadow 0.13s cubic-bezier(0.4, 0, 1, 1);
}

.innov .portrait-card:hover {
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
}

.innov .portrait-img {
  width: 64px;
  height: 90px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.innov .portrait-img img {
  width: 64px;
  height: 90px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.innov .portrait-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.innov .portrait-name {
  font-size: 16px;
  line-height: 1.5;
  color: #2a1a0e;
  font-weight: 700;
}

.innov .portrait-role {
  font-size: 16px;
  line-height: 1.5;
  color: #6a4020;
}

.innov .portrait-quote {
  font-size: 16px;
  line-height: 1.9;
  color: #4a3020;
  font-style: italic;
}

.innov .team-extra-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 1px 3px 5px 0 rgba(195, 126, 73, 0.05);
}

.innov .team-extra-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.innov .team-extra-img:hover img {
  transform: scale(1.04);
}

@keyframes bg-shift {
  0% {
    background-position: 30% 40%;
  }

  50% {
    background-position: 70% 60%;
  }

  100% {
    background-position: 30% 40%;
  }
}

.innov .process-section {
  animation: bg-shift 18s ease-in-out infinite;
}

@media (max-width: 900px) {
  .innov .title-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .innov .title-img-wrap {
    width: 100%;
  }

  .innov .title-img-wrap img {
    width: 100%;
    height: 200px;
  }

  .innov .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .innov .portrait-row {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .innov .title-band-text h1 {
    font-size: 37px;
  }

  .innov .steps-grid {
    grid-template-columns: 1fr;
  }

  .innov .process-head h2,
  .innov .team-sidebar h2 {
    font-size: 27px;
  }
}

.rt {
  background: #FCF8F8;
  overflow-x: clip;
  position: relative;
}

.rt .lead-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

.rt .lead-left {
  flex: 0 0 58%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.rt .lead-overline {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C37E49;
  font-weight: 600;
}

.rt .lead-h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #2a1f17;
  font-weight: 800;
  margin: 0;
}

.rt .lead-h1 .grad-word {
  background: linear-gradient(97deg, #C37E49 30%, #D7B6A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rt .lead-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #3d2b1f;
  max-width: 520px;
  margin: 0;
}

.rt .lead-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.rt .btn-primary {
  display: inline-block;
  padding: 12px 40px;
  background: #C37E49;
  color: #FCF8F8;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: padding 0.12s cubic-bezier(0.4, 0, 1, 1), background 0.14s cubic-bezier(0.4, 0, 1, 1);
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
}

.rt .btn-primary:hover {
  padding: 12px 52px;
  background: #b06d38;
}

.rt .btn-primary:focus {
  outline: 2px solid #C37E49;
  outline-offset: 3px;
}

.rt .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: #FCF8F8;
  border: 1.5px solid #D7B6A6;
  cursor: pointer;
  transition: background 0.1s ease-in, border-color 0.1s ease-in;
  box-shadow: 1px 3px 5px 0 rgba(215, 182, 166, 0.05);
  text-decoration: none;
}

.rt .btn-secondary:hover {
  background: #D7B6A6;
}

.rt .btn-secondary svg {
  width: 20px;
  height: 20px;
  stroke: #C37E49;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rt .lead-right {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.rt .lead-img-wrap {
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11);
  position: relative;
}

.rt .lead-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) sepia(0.18);
  transition: transform 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.rt .lead-img-wrap:hover img {
  transform: scale(1.04);
}

.rt .lead-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(195, 126, 73, 0.18) 0%, rgba(215, 182, 166, 0.08) 100%);
  pointer-events: none;
}

.rt .float-card {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 220px;
  position: absolute;
  bottom: -24px;
  left: -40px;
  z-index: 2;
}

.rt .float-card .fc-status {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.rt .fc-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: #4caf50;
  display: inline-block;
  box-shadow: inset 0 1px 3px 0 rgba(195, 126, 73, 0.09);
}

.rt .fc-label {
  font-size: 16px;
  line-height: 1.1;
  color: #3d2b1f;
  font-weight: 600;
}

.rt .fc-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #D7B6A6;
  padding-top: 8px;
}

.rt .fc-key {
  font-size: 16px;
  line-height: 1.5;
  color: #7a5c47;
}

.rt .fc-val {
  font-size: 16px;
  line-height: 1.1;
  color: #2a1f17;
  font-weight: 700;
}

.rt .geo-shape {
  position: absolute;
  top: 24px;
  right: -20px;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(195, 126, 73, 0.15);
  border-radius: 2px;
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 0;
}

.rt .geo-shape2 {
  position: absolute;
  bottom: 60px;
  right: 10px;
  width: 44px;
  height: 44px;
  background: rgba(215, 182, 166, 0.18);
  border-radius: 2px;
  transform: rotate(34deg);
  pointer-events: none;
  z-index: 0;
}

.rt .corner-bracket {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  border-top: 2px solid #C37E49;
  border-left: 2px solid #C37E49;
  border-radius: 2px 0 0 0;
  pointer-events: none;
}

.rt .corner-bracket.br {
  top: auto;
  left: auto;
  bottom: -6px;
  right: -6px;
  border-top: none;
  border-left: none;
  border-bottom: 2px solid #C37E49;
  border-right: 2px solid #C37E49;
  border-radius: 0 0 2px 0;
}

.rt .commit-section {
  background: #2a1f17;
  position: relative;
  overflow: hidden;
}

.rt .commit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(195, 126, 73, 0.13) 0%, rgba(42, 31, 23, 0) 70%);
  pointer-events: none;
  animation: bg-pulse 6s ease-in-out infinite;
}

@keyframes bg-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.55;
  }
}

.rt .commit-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.rt .commit-left {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt .commit-overline {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D7B6A6;
  font-weight: 600;
}

.rt .commit-h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #FCF8F8;
  font-weight: 800;
  margin: 0;
}

.rt .commit-h2 .accent-br {
  color: #C37E49 !important;
}

.rt .commit-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #c4a898;
  margin: 0;
}

.rt .commit-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
  margin-top: 8px;
}

.rt .commit-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.18;
  filter: grayscale(0.6);
  transition: opacity 0.15s ease-in;
}

.rt .commit-img-wrap:hover img {
  opacity: 0.28;
}

.rt .commit-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt .commit-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rt .step-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 4px;
  background: rgba(252, 248, 248, 0.04);
  position: relative;
  transition: background 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.rt .step-item:hover {
  background: rgba(195, 126, 73, 0.09);
}

.rt .step-num {
  font-size: 37px;
  line-height: 1.1;
  color: rgba(195, 126, 73, 0.28);
  font-weight: 900;
  flex-shrink: 0;
  width: 40px;
}

.rt .step-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rt .step-title {
  font-size: 16px;
  line-height: 1.5;
  color: #FCF8F8;
  font-weight: 700;
  margin: 0;
}

.rt .step-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #c4a898;
  margin: 0;
}

.rt .entry-marker {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.rt .marker-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #C37E49 0%, rgba(195, 126, 73, 0.1) 100%);
}

.rt .marker-label {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C37E49;
  font-weight: 700;
  white-space: nowrap;
}

.rt .exit-marker {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.rt .exit-marker .marker-line {
  background: linear-gradient(90deg, rgba(195, 126, 73, 0.1) 0%, #C37E49 100%);
}

.rt .problem-section {
  background: #FCF8F8;
  position: relative;
}

.rt .problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(215, 182, 166, 0.22) 0%, rgba(252, 248, 248, 0) 68%);
  pointer-events: none;
}

.rt .problem-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  z-index: 1;
}

.rt .problem-top {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.rt .problem-head {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rt .problem-overline {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C37E49;
  font-weight: 600;
}

.rt .problem-h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #2a1f17;
  font-weight: 800;
  margin: 0;
}

.rt .problem-h2 .q-accent {
  color: #C37E49;
}

.rt .problem-lead {
  flex: 1;
  font-size: 16px;
  line-height: 1.9;
  color: #3d2b1f;
  margin: 0;
}

.rt .problem-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.rt .prob-card {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 1px 3px 5px 0 rgba(195, 126, 73, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.14s cubic-bezier(0.4, 0, 1, 1), transform 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.rt .prob-card:hover {
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11);
  transform: translateY(-3px);
}

.rt .prob-card.tall {
  padding-top: 40px;
}

.rt .prob-card.taller {
  padding-top: 56px;
}

.rt .prob-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(195, 126, 73, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rt .prob-icon svg {
  width: 22px;
  height: 22px;
  stroke: #C37E49;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rt .prob-card-h {
  font-size: 16px;
  line-height: 1.5;
  color: #2a1f17;
  font-weight: 700;
  margin: 0;
}

.rt .prob-card-p {
  font-size: 16px;
  line-height: 1.9;
  color: #5a3f2e;
  margin: 0;
}

.rt .prob-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  margin-top: 8px;
}

.rt .prob-img-wrap img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.55;
  filter: saturate(0.5) sepia(0.12);
  transition: transform 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.rt .prob-img-wrap:hover img {
  transform: scale(1.05);
}

.rt .example-section {
  background: linear-gradient(172deg, #3d2b1f 0%, #2a1f17 55%, #1e1510 100%);
  position: relative;
}

.rt .example-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(215, 182, 166, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.rt .example-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.rt .example-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt .example-overline {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D7B6A6;
  font-weight: 600;
}

.rt .example-h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #FCF8F8;
  font-weight: 800;
  margin: 0;
}

.rt .example-h2 .ex-accent {
  color: #C37E49;
}

.rt .example-p {
  font-size: 16px;
  line-height: 1.9;
  color: #c4a898;
  margin: 0;
}

.rt .example-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.rt .ex-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(215, 182, 166, 0.12);
}

.rt .ex-row:last-child {
  border-bottom: none;
}

.rt .ex-dot-wrap {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  flex-shrink: 0;
}

.rt .ex-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: #C37E49;
  display: block;
}

.rt .ex-text {
  font-size: 16px;
  line-height: 1.9;
  color: #c4a898;
  margin: 0;
}

.rt .ex-text strong {
  color: #FCF8F8;
  font-weight: 700;
}

.rt .example-right {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt .ex-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11);
  position: relative;
}

.rt .ex-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.55) sepia(0.22);
  transition: transform 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.rt .ex-img-wrap:hover img {
  transform: scale(1.04);
}

.rt .ex-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42, 31, 23, 0.55) 100%);
  pointer-events: none;
}

.rt .testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rt .testi-card {
  background: rgba(252, 248, 248, 0.05);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: inset 0 1px 4px 0 rgba(195, 126, 73, 0.08);
  transition: background 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.rt .testi-card:hover {
  background: rgba(195, 126, 73, 0.09);
}

.rt .testi-top {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.rt .testi-portrait {
  width: 48px;
  height: 48px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.rt .testi-portrait img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.rt .testi-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rt .testi-name {
  font-size: 16px;
  line-height: 1.1;
  color: #FCF8F8;
  font-weight: 700;
}

.rt .testi-role {
  font-size: 16px;
  line-height: 1.1;
  color: #c4a898;
}

.rt .testi-quote {
  font-size: 16px;
  line-height: 1.9;
  color: #c4a898;
  margin: 0;
  font-style: italic;
}

@media (max-width: 1024px) {
  .rt .lead-wrap {
    flex-direction: column;
    padding: 40px 24px 80px;
  }

  .rt .lead-left {
    flex: none;
    width: 100%;
  }

  .rt .lead-right {
    flex: none;
    width: 100%;
    align-items: flex-start;
  }

  .rt .lead-h1 {
    font-size: 37px;
  }

  .rt .float-card {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 320px;
  }

  .rt .commit-wrap {
    flex-direction: column;
    gap: 40px;
    padding: 40px 24px;
  }

  .rt .commit-left {
    flex: none;
    width: 100%;
  }

  .rt .problem-top {
    flex-direction: column;
    gap: 24px;
  }

  .rt .problem-head {
    flex: none;
    width: 100%;
  }

  .rt .problem-cols {
    grid-template-columns: 1fr 1fr;
  }

  .rt .example-wrap {
    flex-direction: column;
    gap: 40px;
    padding: 40px 24px;
  }

  .rt .example-right {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .rt .lead-h1 {
    font-size: 27px;
  }

  .rt .commit-h2 {
    font-size: 27px;
  }

  .rt .problem-h2 {
    font-size: 27px;
  }

  .rt .example-h2 {
    font-size: 27px;
  }

  .rt .problem-cols {
    grid-template-columns: 1fr;
  }

  .rt .lead-wrap {
    padding: 40px 12px 80px;
  }

  .rt .commit-wrap {
    padding: 40px 12px;
  }

  .rt .problem-wrap {
    padding: 40px 12px;
  }

  .rt .example-wrap {
    padding: 40px 12px;
  }
}

.srvs-pg {
  background: #FCF8F8;
  overflow-x: clip;
}

.srvs-pg .entry-band {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.srvs-pg .entry-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.srvs-pg .entry-overline {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #C37E49;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.srvs-pg .entry-h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #2a1f17;
  margin: 0;
}

.srvs-pg .entry-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #3d2e24;
  margin: 0;
  max-width: 480px;
}

.srvs-pg .entry-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.srvs-pg .btn-primary {
  display: inline-block;
  background: #C37E49;
  color: #FCF8F8;
  font-size: 16px;
  line-height: 1.1;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
  transition: width 0.12s cubic-bezier(0.4, 0, 1, 1), background 0.14s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.14s ease-in;
}

.srvs-pg .btn-primary:hover {
  background: #a8672e;
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11);
  padding: 12px 32px;
}

.srvs-pg .btn-secondary {
  display: inline-block;
  background: transparent;
  color: #C37E49;
  font-size: 16px;
  line-height: 1.1;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #C37E49;
  cursor: pointer;
  transition: padding 0.1s cubic-bezier(0.4, 0, 1, 1), background 0.12s ease-in;
}

.srvs-pg .btn-secondary:hover {
  background: rgba(195, 126, 73, 0.07);
  padding: 12px 32px;
}

.srvs-pg .entry-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.srvs-pg .entry-img-wrap {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11);
  position: relative;
}

.srvs-pg .entry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.srvs-pg .entry-img-wrap:hover img {
  transform: scale(1.04);
}

.srvs-pg .entry-img-clip {
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
}

.srvs-pg .spot-a {
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(195, 126, 73, 0.13);
  border-radius: 20px;
  filter: blur(48px);
  top: -40px;
  right: -40px;
  pointer-events: none;
}

.srvs-pg .spot-b {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(215, 182, 166, 0.18);
  border-radius: 20px;
  filter: blur(36px);
  bottom: -24px;
  left: -24px;
  pointer-events: none;
}

.srvs-pg .entry-band-bg {
  background: linear-gradient(170deg, #FCF8F8 0%, #FCF8F8 55%, #f5e8dc 100%);
}

.srvs-pg .divider-a {
  width: 100%;
  height: 2px;
  background: linear-gradient(112deg, transparent 0%, #C37E49 40%, #D7B6A6 70%, transparent 100%);
  opacity: 0.35;
}

.srvs-pg .cards-strip {
  background: #fff7f3;
  padding: 80px 0;
}

.srvs-pg .cards-strip-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px;
}

.srvs-pg .strip-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 640px;
}

.srvs-pg .strip-overline {
  font-size: 16px;
  font-weight: 600;
  color: #C37E49;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.srvs-pg .strip-h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #2a1f17;
  margin: 0;
}

.srvs-pg .strip-sub {
  font-size: 16px;
  line-height: 1.9;
  color: #3d2e24;
  margin: 0;
}

.srvs-pg .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.srvs-pg .svc-card {
  background: #FCF8F8;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 1px 3px 5px 0 rgba(195, 126, 73, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.14s ease-in, transform 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.srvs-pg .svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(195, 126, 73, 0);
  transition: background 0.16s cubic-bezier(0.4, 0, 1, 1);
  pointer-events: none;
  border-radius: 6px;
}

.srvs-pg .svc-card:hover::before {
  background: rgba(195, 126, 73, 0.04);
}

.srvs-pg .svc-card:hover {
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
  transform: translateY(-2px);
}

.srvs-pg .card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.srvs-pg .card-label {
  font-size: 16px;
  font-weight: 700;
  color: #2a1f17;
  line-height: 1.5;
  margin: 0;
}

.srvs-pg .card-body {
  font-size: 16px;
  line-height: 1.9;
  color: #4a3828;
  margin: 0;
}

.srvs-pg .card-tag {
  display: inline-block;
  font-size: 16px;
  color: #C37E49;
  font-weight: 600;
  background: rgba(195, 126, 73, 0.08);
  border-radius: 2px;
  padding: 4px 8px;
  line-height: 1.1;
  align-self: flex-start;
}

.srvs-pg .divider-b {
  width: 100%;
  height: 2px;
  background: linear-gradient(88deg, transparent 0%, #D7B6A6 50%, transparent 100%);
  opacity: 0.4;
}

.srvs-pg .metrics-strip {
  padding: 80px 0;
  background: linear-gradient(160deg, #f9ede4 0%, #FCF8F8 60%, #f5eee8 100%);
  position: relative;
}

.srvs-pg .metrics-strip-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px;
}

.srvs-pg .metrics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.srvs-pg .metrics-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.srvs-pg .metrics-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.srvs-pg .metrics-overline {
  font-size: 16px;
  font-weight: 600;
  color: #C37E49;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.srvs-pg .metrics-h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #2a1f17;
  margin: 0;
}

.srvs-pg .metrics-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #3d2e24;
  margin: 0;
}

.srvs-pg .figures-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.srvs-pg .fig-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: #FCF8F8;
  border-radius: 6px;
  box-shadow: 1px 3px 5px 0 rgba(195, 126, 73, 0.05);
}

.srvs-pg .fig-num {
  font-size: 37px;
  font-weight: 700;
  color: #C37E49;
  line-height: 1.1;
}

.srvs-pg .fig-label {
  font-size: 16px;
  font-weight: 600;
  color: #2a1f17;
  line-height: 1.5;
}

.srvs-pg .fig-note {
  font-size: 16px;
  line-height: 1.5;
  color: #5a4234;
  margin: 0;
}

.srvs-pg .metrics-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.srvs-pg .chart-wrap {
  background: #FCF8F8;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
}

.srvs-pg .chart-title {
  font-size: 16px;
  font-weight: 600;
  color: #2a1f17;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.srvs-pg .chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.srvs-pg .reviews-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.srvs-pg .review-card {
  background: #FCF8F8;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 1px 3px 5px 0 rgba(195, 126, 73, 0.05);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.srvs-pg .rev-portrait {
  width: 56px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.srvs-pg .rev-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.srvs-pg .rev-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srvs-pg .rev-name {
  font-size: 16px;
  font-weight: 700;
  color: #2a1f17;
  line-height: 1.1;
}

.srvs-pg .rev-role {
  font-size: 16px;
  color: #C37E49;
  line-height: 1.1;
}

.srvs-pg .rev-text {
  font-size: 16px;
  line-height: 1.9;
  color: #4a3828;
  margin: 0;
}

.srvs-pg .stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.srvs-pg .star-shape {
  width: 14px;
  height: 14px;
}

.srvs-pg .circles-deco {
  position: absolute;
  top: 40px;
  right: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  overflow: hidden;
}

.srvs-pg .circ {
  position: absolute;
  border-radius: 20px;
  border: 1.5px solid rgba(195, 126, 73, 0.10);
}

.srvs-pg .circ-1 {
  width: 200px;
  height: 200px;
  top: 0;
  right: 0;
}

.srvs-pg .circ-2 {
  width: 140px;
  height: 140px;
  top: 60px;
  right: 60px;
}

.srvs-pg .circ-3 {
  width: 80px;
  height: 80px;
  top: 120px;
  right: 120px;
}

@keyframes elastic-in {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(16px);
  }

  60% {
    opacity: 1;
    transform: scale(1.03) translateY(-4px);
  }

  80% {
    transform: scale(0.98) translateY(1px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.srvs-pg .entry-band {
  animation: elastic-in 0.5s cubic-bezier(0.4, 0, 1, 1) both;
}

@media (max-width: 1024px) {
  .srvs-pg .entry-band {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .srvs-pg .entry-h1 {
    font-size: 37px;
  }

  .srvs-pg .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srvs-pg .metrics-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .srvs-pg .circles-deco {
    display: none;
  }
}

@media (max-width: 640px) {
  .srvs-pg .entry-band {
    padding: 40px 24px;
  }

  .srvs-pg .cards-strip-inner,
  .srvs-pg .metrics-strip-inner {
    padding: 0 24px;
  }

  .srvs-pg .cards-strip,
  .srvs-pg .metrics-strip {
    padding: 40px 0;
  }

  .srvs-pg .cards-grid {
    grid-template-columns: 1fr;
  }

  .srvs-pg .figures-row {
    grid-template-columns: 1fr;
  }

  .srvs-pg .entry-h1 {
    font-size: 37px;
  }

  .srvs-pg .metrics-h2,
  .srvs-pg .strip-h2 {
    font-size: 27px;
  }

  .srvs-pg .entry-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.abt {
  background: #FCF8F8;
  overflow-x: clip;
  position: relative;
}

.abt .geo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.abt .geo-bg::before {
  content: '';
  position: absolute;
  top: 12%;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(195, 126, 73, 0.08);
}

.abt .geo-bg::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(215, 182, 166, 0.1);
}

.abt .vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 55%, rgba(195, 126, 73, 0.04) 100%);
}

.abt .s1 {
  position: relative;
  z-index: 1;
  padding: 80px 40px;
  max-width: 1366px;
  margin: 0 auto;
}

.abt .s1-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: end;
}

.abt .s1-text {
  position: relative;
}

.abt .s1-overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C37E49;
  margin-bottom: 24px;
  line-height: 1.1;
}

.abt .s1-h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #1e1208;
  margin: 0 0 40px 0;
  max-width: 820px;
}

.abt .s1-lead {
  font-size: 27px;
  line-height: 1.5;
  color: #3a2510;
  max-width: 640px;
  margin: 0 0 40px 0;
}

.abt .s1-corner-tl {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.abt .s1-corner-tl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #C37E49;
  opacity: 0.5;
}

.abt .s1-corner-tl::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 32px;
  background: #C37E49;
  opacity: 0.5;
}

.abt .s1-img-col {
  position: relative;
  align-self: end;
}

.abt .s1-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  clip-path: inset(0 100% 0 0);
  animation: curtain-open 0.16s cubic-bezier(0.4, 0, 1, 1) 0.08s forwards;
}

@keyframes curtain-open {
  to {
    clip-path: inset(0 0% 0 0);
  }
}

.abt .s1-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(30%) saturate(1.3) brightness(0.92);
  transition: transform 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.abt .s1-img-wrap:hover img {
  transform: scale(1.04);
}

.abt .s1-img-caption {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #7a5a3a;
}

.abt .s1-stats {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 40px;
}

.abt .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 12px 12px;
  position: relative;
}

.abt .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #C37E49 0%, #D7B6A6 100%);
}

.abt .stat-num {
  font-size: 37px;
  line-height: 1.1;
  color: #C37E49;
  font-weight: 700;
}

.abt .stat-label {
  font-size: 16px;
  line-height: 1.5;
  color: #5a3e28;
}

.abt .divider-a {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.abt .divider-a-line {
  height: 1px;
  background: #D7B6A6;
  position: relative;
}

.abt .divider-a-line::before,
.abt .divider-a-line::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 1px;
  height: 7px;
  background: #C37E49;
}

.abt .divider-a-line::before {
  left: 20%;
}

.abt .divider-a-line::after {
  left: 80%;
}

.abt .s2 {
  position: relative;
  z-index: 1;
  padding: 80px 40px;
  background: linear-gradient(160deg, #FCF8F8 0%, #f5ece3 40%, #FCF8F8 100%);
}

.abt .s2-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.abt .s2-top {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}

.abt .s2-overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C37E49;
  margin-bottom: 24px;
  line-height: 1.1;
}

.abt .s2-h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #1e1208;
  margin: 0 0 24px 0;
}

.abt .s2-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #3a2510;
  max-width: 600px;
  margin: 0 0 24px 0;
}

.abt .s2-aside {
  padding-top: 8px;
}

.abt .s2-aside-img {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  margin-bottom: 12px;
}

.abt .s2-aside-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.14s ease-in;
}

.abt .s2-aside-img:hover img {
  transform: scale(1.04);
}

.abt .s2-aside-name {
  font-size: 16px;
  line-height: 1.5;
  color: #1e1208;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.abt .s2-aside-role {
  font-size: 16px;
  line-height: 1.5;
  color: #7a5a3a;
  margin: 0;
}

.abt .s2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.abt .s2-card {
  background: #FCF8F8;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
  position: relative;
  transition: box-shadow 0.13s ease-in, transform 0.13s ease-in;
}

.abt .s2-card:hover {
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11);
  transform: translateY(-2px);
}

.abt .s2-card.accent-a {
  background: linear-gradient(135deg, #FCF8F8 60%, #f5e8d8 100%);
}

.abt .s2-card.accent-b {
  background: linear-gradient(135deg, #FCF8F8 60%, #ede0d8 100%);
}

.abt .s2-card.accent-c {
  background: linear-gradient(135deg, #FCF8F8 60%, #f0ebe8 100%);
}

.abt .s2-card-bar {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.abt .s2-card.accent-a .s2-card-bar {
  background: #C37E49;
}

.abt .s2-card.accent-b .s2-card-bar {
  background: #D7B6A6;
}

.abt .s2-card.accent-c .s2-card-bar {
  background: #b86a30;
}

.abt .s2-card-h {
  font-size: 16px;
  line-height: 1.5;
  color: #1e1208;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.abt .s2-card-p {
  font-size: 16px;
  line-height: 1.9;
  color: #3a2510;
  margin: 0;
}

.abt .s2-team {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.abt .s2-team-img-wrap {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
}

.abt .s2-team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.15s ease-in;
}

.abt .s2-team-img-wrap:hover img {
  transform: scale(1.04);
}

.abt .s2-team-text {
  position: relative;
  padding-left: 24px;
}

.abt .s2-team-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #C37E49 0%, #D7B6A6 100%);
}

.abt .s2-team-h {
  font-size: 27px;
  line-height: 1.1;
  color: #1e1208;
  margin: 0 0 24px 0;
}

.abt .s2-team-p {
  font-size: 16px;
  line-height: 1.9;
  color: #3a2510;
  margin: 0 0 24px 0;
}

.abt .s2-team-quote {
  background: #f5ece3;
  border-radius: 6px;
  padding: 24px;
  font-size: 16px;
  line-height: 1.9;
  color: #5a3e28;
  font-style: italic;
  box-shadow: 1px 3px 5px 0 rgba(215, 182, 166, 0.05);
  margin: 0;
}

.abt .s2-team-name {
  font-size: 16px;
  line-height: 1.5;
  color: #C37E49;
  font-weight: 600;
  margin: 12px 0 0 0;
  font-style: normal;
}

.abt .s2-img-row {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.abt .s2-img-item {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16/9;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
}

.abt .s2-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.abt .s2-img-item:hover img {
  transform: scale(1.04);
}

.abt .s2-link {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 24px;
  background: #C37E49;
  color: #FCF8F8;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  box-shadow: 1px 3px 5px 0 rgba(195, 126, 73, 0.05);
  transition: background 0.12s ease-in, width 0.12s ease-in, padding 0.12s ease-in;
}

.abt .s2-link:hover {
  background: #b86a30;
  padding: 12px 32px;
}

.abt .s2-link:focus {
  outline: 2px solid #C37E49;
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .abt .s1-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .abt .s1-img-col {
    max-width: 320px;
  }

  .abt .s1-h1 {
    font-size: 37px;
  }

  .abt .s2-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .abt .s2-aside {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }

  .abt .s2-aside-img {
    width: 120px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .abt .s2-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt .s2-team {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .abt .s2-team-img-wrap {
    max-width: 280px;
  }

  .abt .s2-img-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .abt .s1 {
    padding: 40px 24px;
  }

  .abt .s1-h1 {
    font-size: 27px;
  }

  .abt .s1-lead {
    font-size: 16px;
  }

  .abt .s1-stats {
    flex-direction: column;
    gap: 24px;
  }

  .abt .s2 {
    padding: 40px 24px;
  }

  .abt .s2-grid {
    grid-template-columns: 1fr;
  }

  .abt .s2-team-text {
    padding-left: 16px;
  }

  .abt .divider-a {
    padding: 0 24px;
  }
}

.cu-pg {
  background: #FCF8F8;
  overflow-x: clip;
}

.cu-pg .pg-band {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C37E49 0%, #D7B6A6 55%, #FCF8F8 100%);
}

.cu-pg .reach-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cu-pg .reach-left {
  position: relative;
}

.cu-pg .reach-overline {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C37E49;
  margin-bottom: 12px;
  font-weight: 600;
}

.cu-pg .reach-heading {
  font-size: 68px;
  line-height: 1.1;
  color: #1e1410;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.cu-pg .reach-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #3d2b1f;
  margin: 0 0 40px 0;
  max-width: 440px;
}

.cu-pg .coord-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cu-pg .coord-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.cu-pg .coord-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #FCF8F8;
  border: 1.5px solid #D7B6A6;
  box-shadow: 1px 3px 5px 0 rgba(195, 126, 73, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cu-pg .coord-icon svg {
  width: 18px;
  height: 18px;
  stroke: #C37E49;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cu-pg .coord-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cu-pg .coord-label {
  font-size: 16px;
  line-height: 1.1;
  color: #8a6a55;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cu-pg .coord-val {
  font-size: 16px;
  line-height: 1.5;
  color: #1e1410;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.cu-pg .coord-val:hover {
  color: #C37E49;
}

.cu-pg .reach-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11);
}

.cu-pg .reach-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.96);
  transition: transform 0.18s cubic-bezier(0.4, 0, 1, 1);
}

.cu-pg .reach-img-wrap:hover img {
  transform: scale(1.03);
}

.cu-pg .reach-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(30, 20, 16, 0.72) 0%, transparent 100%);
}

.cu-pg .reach-img-caption span {
  font-size: 16px;
  line-height: 1.5;
  color: #FCF8F8;
  font-weight: 500;
}

.cu-pg .dots-deco {
  position: absolute;
  top: -24px;
  right: -24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  width: 72px;
  pointer-events: none;
}

.cu-pg .dots-deco span {
  display: block;
  border-radius: 20px;
  background: #D7B6A6;
  opacity: 0.5;
}

.cu-pg .dots-deco span:nth-child(1) {
  width: 6px;
  height: 6px;
}

.cu-pg .dots-deco span:nth-child(2) {
  width: 10px;
  height: 10px;
}

.cu-pg .dots-deco span:nth-child(3) {
  width: 8px;
  height: 8px;
}

.cu-pg .dots-deco span:nth-child(4) {
  width: 12px;
  height: 12px;
}

.cu-pg .dots-deco span:nth-child(5) {
  width: 6px;
  height: 6px;
}

.cu-pg .dots-deco span:nth-child(6) {
  width: 9px;
  height: 9px;
}

.cu-pg .divider-a {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px;
}

.cu-pg .divider-a hr {
  border: none;
  height: 0;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-image: linear-gradient(90deg, #D7B6A6 0%, #C37E49 100%) 1;
  margin: 0;
}

.cu-pg .form-band {
  background: linear-gradient(95deg, #f5ede6 0%, #FCF8F8 60%, #FCF8F8 100%);
  animation: warmcool 9s ease-in-out infinite alternate;
}

@keyframes warmcool {
  0% {
    background: linear-gradient(95deg, #f5ede6 0%, #FCF8F8 60%, #FCF8F8 100%);
  }

  50% {
    background: linear-gradient(95deg, #faf3ee 0%, #FCF8F8 65%, #eef3f7 100%);
  }

  100% {
    background: linear-gradient(95deg, #f0e8e0 0%, #FCF8F8 55%, #FCF8F8 100%);
  }
}

.cu-pg .form-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.cu-pg .form-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cu-pg .aside-overline {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C37E49;
  font-weight: 600;
}

.cu-pg .aside-heading {
  font-size: 37px;
  line-height: 1.1;
  color: #1e1410;
  margin: 0;
  font-weight: 700;
}

.cu-pg .aside-text {
  font-size: 16px;
  line-height: 1.9;
  color: #3d2b1f;
  margin: 0;
}

.cu-pg .aside-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.cu-pg .aside-tag {
  font-size: 16px;
  line-height: 1.1;
  color: #7a5438;
  background: #FCF8F8;
  border: 1px solid #D7B6A6;
  border-radius: 4px;
  padding: 4px 12px;
  font-weight: 500;
}

.cu-pg .form-card {
  background: #ffffff;
  border-radius: 6px;
  border: 2px solid #D7B6A6;
  outline: 1px solid #C37E49;
  outline-offset: 3px;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
  padding: 40px;
}

.cu-pg .contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cu-pg .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cu-pg .field-unit {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cu-pg .field-unit label {
  font-size: 16px;
  line-height: 1.1;
  color: #3d2b1f;
  font-weight: 600;
}

.cu-pg .field-unit input[type="text"],
.cu-pg .field-unit input[type="email"] {
  font-size: 16px;
  line-height: 1.5;
  color: #1e1410;
  background: #FCF8F8;
  border: 1.5px solid #D7B6A6;
  border-radius: 4px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.14s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.14s cubic-bezier(0.4, 0, 1, 1);
  box-shadow: inset 1px 2px 4px 0 rgba(195, 126, 73, 0.06);
}

.cu-pg .field-unit input[type="text"]::placeholder,
.cu-pg .field-unit input[type="email"]::placeholder {
  color: rgba(30, 20, 16, 0.4);
}

.cu-pg .field-unit input[type="text"]:focus,
.cu-pg .field-unit input[type="email"]:focus {
  outline: none;
  border-color: #C37E49;
  box-shadow: inset 1px 2px 4px 0 rgba(195, 126, 73, 0.06), 0 0 0 3px rgba(195, 126, 73, 0.12);
}

.cu-pg .checks-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cu-pg .checks-label {
  font-size: 16px;
  line-height: 1.1;
  color: #3d2b1f;
  font-weight: 600;
  margin-bottom: 4px;
}

.cu-pg .checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cu-pg .check-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1.5px solid #D7B6A6;
  border-radius: 4px;
  background: #FCF8F8;
  cursor: pointer;
  transition: border-color 0.12s cubic-bezier(0.4, 0, 1, 1), background 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.cu-pg .check-item:hover {
  border-color: #C37E49;
  background: #fff8f4;
}

.cu-pg .check-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #C37E49;
  cursor: pointer;
  flex-shrink: 0;
}

.cu-pg .check-item span {
  font-size: 16px;
  line-height: 1.5;
  color: #1e1410;
}

.cu-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #FCF8F8;
  border-radius: 4px;
  border: 1px solid #D7B6A6;
}

.cu-pg .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #C37E49;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.cu-pg .privacy-row p {
  font-size: 16px;
  line-height: 1.5;
  color: #3d2b1f;
  margin: 0;
}

.cu-pg .privacy-row a {
  color: #C37E49;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.cu-pg .privacy-row a:hover {
  color: #8a4e1e;
}

.cu-pg .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  color: #FCF8F8;
  background: #C37E49;
  border: none;
  border-radius: 4px;
  padding: 12px 40px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
  transition: background 0.14s cubic-bezier(0.4, 0, 1, 1), padding 0.14s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.cu-pg .submit-btn:hover {
  background: #a6622f;
  padding: 12px 52px;
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11);
}

.cu-pg .submit-btn:focus {
  outline: 3px solid rgba(195, 126, 73, 0.4);
  outline-offset: 2px;
}

.cu-pg .submit-btn:active {
  background: #8a4e1e;
}

.cu-pg .divider-b {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px;
}

.cu-pg .divider-b hr {
  border: none;
  height: 0;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-image: linear-gradient(90deg, #C37E49 0%, #D7B6A6 100%) 1;
  margin: 0;
}

.cu-pg .alt-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.cu-pg .alt-img-col {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
}

.cu-pg .alt-img-col img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) brightness(0.94);
  transition: transform 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.cu-pg .alt-img-col:hover img {
  transform: scale(1.04);
}

.cu-pg .alt-center-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  padding: 40px;
  background: #ffffff;
  border-radius: 6px;
  border: 2px solid #C37E49;
  outline: 1px solid #D7B6A6;
  outline-offset: 3px;
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11);
}

.cu-pg .alt-center-col .over {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C37E49;
  font-weight: 600;
}

.cu-pg .alt-center-col h2 {
  font-size: 37px;
  line-height: 1.1;
  color: #1e1410;
  margin: 0;
  font-weight: 700;
}

.cu-pg .alt-center-col p {
  font-size: 16px;
  line-height: 1.9;
  color: #3d2b1f;
  margin: 0;
}

.cu-pg .alt-right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cu-pg .stat-card {
  background: #FCF8F8;
  border-radius: 4px;
  border-top: 3px solid #C37E49;
  box-shadow: 1px 3px 5px 0 rgba(195, 126, 73, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.cu-pg .stat-card:hover {
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
}

.cu-pg .stat-num {
  font-size: 37px;
  line-height: 1.1;
  color: #C37E49;
  font-weight: 700;
}

.cu-pg .stat-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #3d2b1f;
}

.cu-pg .hover-reveal-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #1e1410;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
}

.cu-pg .hover-top {
  background: #C37E49;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.cu-pg .hover-reveal-wrap:hover .hover-top {
  opacity: 0;
  pointer-events: none;
}

.cu-pg .hover-bottom {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.cu-pg .hover-reveal-wrap:hover .hover-bottom {
  opacity: 1;
}

.cu-pg .hover-top .ht-label {
  font-size: 16px;
  line-height: 1.1;
  color: #FCF8F8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cu-pg .hover-top .ht-val {
  font-size: 27px;
  line-height: 1.1;
  color: #FCF8F8;
  font-weight: 700;
}

.cu-pg .hover-bottom .hb-label {
  font-size: 16px;
  line-height: 1.1;
  color: #D7B6A6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cu-pg .hover-bottom .hb-text {
  font-size: 16px;
  line-height: 1.5;
  color: #FCF8F8;
}

@media (max-width: 1024px) {
  .cu-pg .reach-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px;
  }

  .cu-pg .reach-heading {
    font-size: 37px;
  }

  .cu-pg .form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px;
  }

  .cu-pg .alt-wrap {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }

  .cu-pg .alt-img-col {
    display: none;
  }

  .cu-pg .divider-a,
  .cu-pg .divider-b {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .cu-pg .field-row {
    grid-template-columns: 1fr;
  }

  .cu-pg .checks-grid {
    grid-template-columns: 1fr;
  }

  .cu-pg .form-card {
    padding: 24px;
  }

  .cu-pg .reach-wrap,
  .cu-pg .form-wrap,
  .cu-pg .alt-wrap {
    padding: 40px 12px;
  }
}

.success-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background-color: #FCF8F8;
}

.success-pg .card {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  box-shadow: 1px 9px 52px 0 rgba(195, 126, 73, 0.11);
  padding: 40px;
  text-align: center;
  position: relative;
}

.success-pg .card::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: #C37E49;
  border-radius: 2px;
  margin: 0 auto 40px;
}

.success-pg .icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: #FCF8F8;
  box-shadow: inset 1px 3px 5px 0 rgba(215, 182, 166, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-pg .icon-wrap svg {
  display: block;
}

.success-pg .card-title {
  font-size: 37px;
  line-height: 1.1;
  color: #2b1f14;
  margin: 0 0 12px;
  font-weight: 700;
}

.success-pg .card-msg {
  font-size: 16px;
  line-height: 1.5;
  color: #4a3728;
  margin: 0 0 40px;
}

.success-pg .back-btn {
  display: inline-block;
  padding: 12px 40px;
  background: #C37E49;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: padding 0.15s cubic-bezier(0.4, 0, 1, 1), background 0.12s ease-in;
  box-shadow: 1px 5px 18px 0 rgba(195, 126, 73, 0.09);
}

.success-pg .back-btn:hover {
  padding: 12px 52px;
  background: #a8683a;
}

.success-pg .back-btn:focus {
  outline: 2px solid #C37E49;
  outline-offset: 3px;
}

.success-pg .back-btn:active {
  background: #8f5630;
}

.success-pg .divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D7B6A6 40%, #D7B6A6 60%, transparent);
  margin: 40px 0;
}

.success-pg .note {
  font-size: 16px;
  line-height: 1.5;
  color: #7a5c48;
  margin: 0;
}

.success-pg .note a {
  color: #C37E49;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.12s ease-in;
}

.success-pg .note a:hover {
  color: #8f5630;
}

@media (max-width: 600px) {
  .success-pg {
    padding: 40px 12px;
  }

  .success-pg .card {
    padding: 40px 24px;
  }

  .success-pg .card-title {
    font-size: 27px;
  }
}