:root {
  --bg: #0b0e11;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.6);
  --line: rgba(255, 255, 255, 0.1);
  --line2: rgba(183, 155, 108, 0.18);
  --gold: #b79b6c;
  --gold2: rgba(183, 155, 108, 0.26);
  --card: rgba(255, 255, 255, 0.04);
  --card2: rgba(255, 255, 255, 0.06);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius2: 26px;
  --container: 1200px;
  --pad: 16px;
  --pad-lg: 24px;
  --blur: blur(14px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(183, 155, 108, 0.08), transparent 55%),
    radial-gradient(900px 700px at 90% 20%, rgba(255, 255, 255, 0.06), transparent 50%), var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  font-weight: 700;
}
h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.12;
  color: var(--text);
}
h3 {
  font-size: 20px;
  line-height: 1.22;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin-top: 0;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}


/* Utility */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--pad-lg);
  }
}

.section {
  padding: 72px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .section {
    padding: 92px 0;
  }
}

/* Section header */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section-head .copy {
  max-width: 76ch;
}

.copy {
  color: var(--muted2);
  font-size: 14px;
}

@media (min-width: 1024px) {
  .copy {
    font-size: 16px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow:before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.9;
}



.lead {
  font-size: clamp(16px, 3.2vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 58ch;
}

.muted {
  color: var(--muted2);
  text-align: center;
}

.muted-tab {
  color: var(--muted2);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  margin: 22px 0;
}

.divider-section {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  margin: 0;
}

/* Buttons */
.btn-card {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  user-select: none;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  user-select: none;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(183, 155, 108, 0.98), rgba(183, 155, 108, 0.86));
  color: #0b0e11;
  box-shadow: 0 10px 30px rgba(183, 155, 108, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 14px 44px rgba(183, 155, 108, 0.26);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  border-color: rgba(183, 155, 108, 0.5);
  box-shadow: 0 0 0 6px rgba(183, 155, 108, 0.06);
}

.btn-link {
  padding: 0;
  border: none;
  border-bottom: 1px solid rgba(183, 155, 108, 0.35);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.86);
}

.btn-link:hover {
  color: #fff;
  border-bottom-color: rgba(183, 155, 108, 0.7);
  box-shadow: none;
}

/* Focus */
:focus-visible {
  outline: 2px solid rgba(183, 155, 108, 0.75);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Header */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 14, 17, 0.28);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}
.header.is-solid {
  background: rgba(11, 14, 17, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  width: 48px;
  height: auto;
  opacity: 0.98;
}

.nav {
  display: none;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  white-space: nowrap;
}

.phone:hover {
  border-color: rgba(183, 155, 108, 0.42);
  box-shadow: 0 0 0 6px rgba(183, 155, 108, 0.06);
}

.burger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.burger:hover {
  border-color: rgba(183, 155, 108, 0.4);
  box-shadow: 0 0 0 6px rgba(183, 155, 108, 0.06);
}

.burger-lines {
  width: 18px;
  height: 12px;
  position: relative;
}

.burger-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.6px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    top 0.2s ease,
    opacity 0.2s ease;
}

.burger-lines span:nth-child(1) {
  top: 1px;
}

.burger-lines span:nth-child(2) {
  top: 5.3px;
  opacity: 0.9;
}

.burger-lines span:nth-child(3) {
  top: 9.6px;
  opacity: 0.85;
}

.burger[aria-expanded="true"] .burger-lines span:nth-child(1) {
  top: 5.3px;
  transform: rotate(45deg);
}
.burger[aria-expanded="true"] .burger-lines span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-lines span:nth-child(3) {
  top: 5.3px;
  transform: rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
  .phone {
    display: inline-flex;
  }
  .burger {
    display: none;
  }
}

/* Mobile menu */
.menu {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}
.menu.is-open {
  display: block;
}
.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
}
.menu-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: rgba(11, 14, 17, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  transform: translateX(0);
  box-shadow: var(--shadow);
}
.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 4px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.menu-head img {
  width: 46px;
  height: auto;
}
.menu-close {
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}
.menu-links {
  display: flex;
  flex-direction: column;
  padding: 14px 2px;
  gap: 6px;
}
.menu-links a {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.85);
}
.menu-links a:hover {
  border-color: rgba(183, 155, 108, 0.4);
  box-shadow: 0 0 0 6px rgba(183, 155, 108, 0.06);
  color: #fff;
}
.menu-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 8px;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(780px, 92vh);
  padding-top: 72px; /* header */
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 14, 17, 0.92) 0%,
      rgba(11, 14, 17, 0.78) 40%,
      rgba(11, 14, 17, 0.5) 68%,
      rgba(11, 14, 17, 0.3) 100%
    ),
    linear-gradient(
      180deg,
      rgba(11, 14, 17, 0.78) 0%,
      rgba(11, 14, 17, 0.58) 35%,
      rgba(11, 14, 17, 0.88) 100%
    );
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/hero_bg.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.02) brightness(0.92);
  transform: scale(1.02);
}
.hero-glow {
  position: absolute;
  inset: -80px;
  background:
    radial-gradient(600px 360px at 18% 30%, rgba(183, 155, 108, 0.18), transparent 60%),
    radial-gradient(500px 300px at 84% 20%, rgba(255, 255, 255, 0.08), transparent 60%);
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.75;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 64px 0 64px;
  align-items: end;
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 88px 0 84px;
  }
}

.hero-copy {
  max-width: 84ch;
}
.hero-copy .divider {
  margin: 18px 0 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  max-width: 64ch;
}

/* Cards / surfaces */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .grid {
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.28);
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(183, 155, 108, 0.85), transparent);
  opacity: 0.9;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-color: rgba(183, 155, 108, 0.26);
  box-shadow: var(--shadow);
}

.card > * {
  position: relative;
  z-index: 1;
}



/* Team */
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .team {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .team {
    grid-template-columns: repeat(4, 1fr);
  }
}
.person {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.person:hover {
  border-color: rgba(183, 155, 108, 0.35);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
  transform: translateY(-2px);
}
.person img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}
.person-body {
  padding: 14px 14px 16px;
}
.person-name {
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: #fff;
}
.person-role {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

/* Services (tabs desktop / accordion mobile) */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 1024px) {
  .services {
    grid-template-columns: 360px 1fr;
    gap: 18px;
    align-items: start;
  }
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-btn {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 14px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.86);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

@media (hover: hover) {
  .service-btn:hover {
    border-color: rgba(183, 155, 108, 0.4);
    box-shadow: 0 0 0 6px rgba(183, 155, 108, 0.06);
  }
}

.service-btn[aria-selected="true"] {
  border-color: rgba(183, 155, 108, 0.55);
  background: linear-gradient(180deg, rgba(183, 155, 108, 0.12), rgba(255, 255, 255, 0.03));
}

.service-btn[aria-selected="true"]:focus {
  outline: none;
}

.service-btn small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.service-panel {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  padding: 18px;
  box-shadow: 0 18px 66px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.service-panel:before {
  content: "";
  position: absolute;
  inset: -130px;
  background: radial-gradient(520px 320px at 18% 0%, rgba(183, 155, 108, 0.12), transparent 60%);
  pointer-events: none;
}
.service-panel > * {
  position: relative;
  z-index: 1;
}

.service-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.point {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 12px;
}
.point b {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  margin-left: 14px;
}
.point span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.point-list {
  margin: 6px 0 0;
  padding-left: 2px;
  list-style: none;
}

.point-list li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.point-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(183, 155, 108, 0.75);
}

/* ===== Mobile accordion for Services (keeps same buttons) ===== */
@media (max-width: 1023.98px) {
  .service-panel {
    display: none;
  }

  .service-btn {
    position: relative;
    padding-right: 44px; /* место под стрелку */
  }

  .service-btn::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.55);
    border-bottom: 2px solid rgba(255, 255, 255, 0.55);
    transform: translateY(-50%) rotate(45deg);
    transition:
      transform 0.18s ease,
      opacity 0.18s ease;
    opacity: 0.9;
    pointer-events: none;
  }

  .service-btn[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(-135deg);
    opacity: 1;
  }

  .svc-accordion {
    display: none;
    margin-top: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
  }

  .svc-accordion.is-open {
    display: block;
  }

  .svc-accordion-inner {
    padding: 14px;
  }

  .service-points {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .svc-accordion {
    display: none !important;
  }
}

/* Advantages - typography only */
.adv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .adv {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .adv {
    grid-template-columns: repeat(3, 1fr);
  }
}
.adv-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.adv-item:before {
  content: "";
  position: absolute;
  inset: -120px;
  background: radial-gradient(520px 320px at 20% 0%, rgba(183, 155, 108, 0.1), transparent 60%);
  opacity: 0.75;
  pointer-events: none;
}
.adv-item > * {
  position: relative;
  z-index: 1;
}
.adv-num {
  font-family: "Playfair Display", Georgia, serif;
  color: rgba(183, 155, 108, 0.92);
  letter-spacing: 0.04em;
  font-size: 20px;
  margin-bottom: 8px;
}
.adv-title {
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}
.advantages-text {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
}

/* TEST */
.cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.num {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(211, 181, 127, 0.92);
  font-weight: 500;
  white-space: nowrap;
}
.desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.66);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245, 245, 245, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 3px;
  width: fit-content;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}
.more::after {
  content: "&rarr;";
  opacity: 0.9;
  transform: translateY(-1px);
}
.more:hover {
  color: rgba(211, 181, 127, 1);
  border-color: rgba(183, 155, 108, 0.75);
  transform: translateX(2px);
}

/* TEST END */

.chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  margin-top: 4px;
  flex: 0 0 auto;
}
details[open] .chev {
  transform: rotate(-135deg);
}
.svc-acc .acc-body {
  padding: 10px 0 2px;
  color: rgba(255, 255, 255, 0.72);
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.faq details {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 14px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq .answer {
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* Contact + form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

.kv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.kv .item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}
.kv .k {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 6px;
}
.kv .v {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.kv .v a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 155, 108, 0.35);
}
.kv .v a:hover {
  border-bottom-color: rgba(183, 155, 108, 0.7);
}


.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
input,
textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 12px 12px;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
input:focus,
textarea:focus {
  border-color: rgba(183, 155, 108, 0.55);
  box-shadow: 0 0 0 6px rgba(183, 155, 108, 0.06);
}
textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}
.check input {
  width: 18px;
  height: 18px;
  padding: 0;
  margin-top: 2px;
  border-radius: 6px;
  accent-color: var(--gold);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}
.form-msg {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.form-msg.is-ok {
  color: rgba(183, 155, 108, 0.95);
}
.form-msg.is-err {
  color: rgba(255, 120, 120, 0.95);
}

/* Footer */
footer {
  padding: 30px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.1);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.foot-links a {
  border-bottom: 1px solid transparent;
}

.foot-links a:hover {
  color: #fff;
  border-bottom-color: rgba(183, 155, 108, 0.5);
}


/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Scroll lock for mobile menu */
body.is-scroll-locked {
  overflow: hidden;
  touch-action: none;
}



.field-error {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 120, 120, 0.95);
}

.is-invalid {
  outline: 2px solid rgba(255, 120, 120, 0.35);
}

#formMsg[data-type="error"] {
  color: rgba(255, 120, 120, 0.95);
}

#form.is-loading {
  opacity: 0.85;
  pointer-events: none; /* визуально и физически блокирует */
}