@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap");

:root {
  --ink: #0c1626;
  --royal: #14335c;
  --royal-2: #1e4a80;
  --felt: #0d5c46;
  --felt-2: #12805f;
  --mist: #f5f8fb;
  --mist-2: #edf2f7;
  --line: #e3eaf2;
  --line-2: #d4dfea;
  --steel: #5b6b80;
  --white: #ffffff;
  --night: #0a1220;
  --grad-royal: linear-gradient(135deg, #14335c 0%, #1e4a80 55%, #2c63a6 100%);
  --grad-felt: linear-gradient(135deg, #0d5c46 0%, #12805f 100%);
  --shadow-s: 0 6px 18px rgba(12, 22, 38, 0.07);
  --shadow-m: 0 18px 45px rgba(12, 22, 38, 0.12);
  --shadow-l: 0 30px 80px rgba(12, 22, 38, 0.18);
  --r-s: 10px;
  --r-m: 18px;
  --r-l: 28px;
  --font-d: "Playfair Display", Georgia, serif;
  --font-s: "Manrope", "Segoe UI", sans-serif;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: var(--line);
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-s);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--royal);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover {
  color: var(--felt);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-d);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--felt-2);
}
h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}
h4 {
  font-size: 1.1rem;
  font-family: var(--font-s);
  font-weight: 700;
}
h5,
h6 {
  font-size: 1rem;
  font-family: var(--font-s);
  font-weight: 700;
}
p {
  margin: 0 0 1rem;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
blockquote,
figure,
figcaption,
fieldset,
legend,
dl,
dd {
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  padding: 0;
  cursor: pointer;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
strong,
b {
  font-weight: 700;
}
table {
  border-collapse: collapse;
  border-color: inherit;
}
textarea {
  resize: vertical;
}
main {
  display: block;
}
section {
  position: relative;
}

.container-x {
  width: min(1240px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.section-sm {
  padding: clamp(2.2rem, 5vw, 3.5rem) 0;
}
.section-mist {
  background: var(--mist);
}
.section-ink {
  background: var(--night);
  color: #e8eef6;
}
.section-ink h1,
.section-ink h2,
.section-ink h3,
.section-ink h4 {
  color: #fff;
}
.section-royal {
  background: var(--grad-royal);
  color: #eaf1f9;
}
.section-royal h1,
.section-royal h2,
.section-royal h3 {
  color: #fff;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--felt);
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--felt);
  display: inline-block;
}
.kicker.center {
  justify-content: center;
}
.kicker.on-dark {
  color: #7fd6bd;
}
.kicker.on-dark::before {
  background: #7fd6bd;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--felt-2);
  max-width: 62ch;
}
.section-ink .lead,
.section-royal .lead,
.bg-media .lead {
  color: rgba(235, 242, 250, 0.82);
}
.small {
  font-size: 0.82rem;
  color: var(--steel);
}
.txt-felt {
  color: var(--felt);
}
.txt-royal {
  color: var(--royal);
}
.txt-serif {
  font-family: var(--font-d);
}
.outline-txt {
  color: transparent;
  -webkit-text-stroke: 1px rgba(20, 51, 92, 0.35);
  font-family: var(--font-d);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  text-align: center;
}
.btn i {
  font-size: 0.8em;
  transition: transform 0.25s ease;
}
.btn:hover i {
  transform: translateX(3px);
}
.btn-royal {
  background: var(--royal);
  color: #fff;
  box-shadow: 0 12px 28px rgba(20, 51, 92, 0.28);
}
.btn-royal:hover {
  background: var(--royal-2);
  color: #fff;
  transform: translateY(-2px);
}
.btn-felt {
  background: var(--felt);
  color: #fff;
  box-shadow: 0 12px 28px rgba(13, 92, 70, 0.28);
}
.btn-felt:hover {
  background: var(--felt-2);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-ink:hover {
  background: var(--royal);
  color: #fff;
  transform: translateY(-2px);
}
.btn-line {
  background: transparent;
  color: var(--royal);
  border-color: var(--line-2);
}
.btn-line:hover {
  border-color: var(--royal);
  color: var(--royal);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--ink);
}
.btn-white:hover {
  background: var(--mist);
  color: var(--royal);
  transform: translateY(-2px);
}
.btn-ghostw {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghostw:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.btn-sm {
  padding: 0.65rem 1.3rem;
  font-size: 0.82rem;
}
.btn[disabled] {
  opacity: 0.55;
  pointer-events: none;
}
.btn .spinner {
  display: none;
}
.btn.loading .spinner {
  display: inline-block;
}
.btn.loading .btn-txt {
  opacity: 0.6;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  box-shadow: var(--shadow-s);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-m);
  border-color: var(--line-2);
}
.card-pad {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.card-dark {
  background: var(--night);
  border-color: rgba(255, 255, 255, 0.1);
  color: #dfe8f2;
}
.card-dark h3,
.card-dark h4 {
  color: #fff;
}

.bg-media {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: var(--r-l);
  overflow: hidden;
}
.bg-media h1,
.bg-media h2,
.bg-media h3,
.bg-media h4 {
  color: #fff;
}
.bg-media p {
  color: rgba(240, 246, 252, 0.85);
}
.bg-media.no-radius {
  border-radius: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--mist-2);
  color: var(--royal);
}
.badge i {
  font-size: 0.75em;
}
.badge-felt {
  background: rgba(13, 92, 70, 0.1);
  color: var(--felt);
}
.badge-glass {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.badge-dark {
  background: var(--ink);
  color: #fff;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--line-2);
  color: var(--steel);
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff;
}
.chip:hover {
  border-color: var(--royal);
  color: var(--royal);
}
.chip.on {
  background: var(--royal);
  border-color: var(--royal);
  color: #fff;
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.6rem 0;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-2);
}
.divider i {
  color: var(--felt);
  font-size: 0.8rem;
}

.num-xl {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--royal);
}
.num-xl.on-dark {
  color: #fff;
}
.stat {
  padding: 1.4rem 1.6rem;
  border-left: 2px solid var(--felt);
}
.stat .num-xl {
  display: block;
  margin-bottom: 0.4rem;
}

.grid-lines {
  background-image:
    linear-gradient(rgba(20, 51, 92, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 51, 92, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.grid-lines-dark {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.img-frame {
  position: relative;
  border-radius: var(--r-m);
  overflow: hidden;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.img-frame:hover img {
  transform: scale(1.05);
}
.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: inherit;
  pointer-events: none;
}
.img-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
}

.pola {
  background: #fff;
  padding: 0.8rem 0.8rem 2.6rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  border-radius: 6px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.pola img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: 3px;
}
.pola figcaption {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--steel);
  text-align: center;
  margin-top: 0.8rem;
}
.pola:nth-child(odd) {
  transform: rotate(-1.6deg);
}
.pola:nth-child(even) {
  transform: rotate(1.4deg);
}
.pola:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: var(--shadow-m);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.mq-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  animation: mq 28s linear infinite;
  will-change: transform;
}
.marquee:hover .mq-track {
  animation-play-state: paused;
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-d);
  font-size: 1rem;
  color: var(--steel);
}
.mq-item i {
  color: var(--felt);
}
.marquee.on-dark .mq-item {
  color: rgba(235, 242, 250, 0.7);
}

.tick {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(12, 22, 38, 0.08);
}
.h-in {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.7rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.brand img {
  width: 92px;
  height: auto;
}
.brand-txt {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.brand-txt span {
  display: block;
  font-size: 0.62rem;
  font-family: var(--font-s);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--felt);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}
.main-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--steel);
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.main-nav a:hover {
  color: var(--royal);
  background: var(--mist);
}
.main-nav a.nav-accent {
  color: var(--felt);
  border: 1px solid rgba(13, 92, 70, 0.35);
  margin-left: 0.3rem;
}
.main-nav a.nav-accent:hover {
  background: var(--felt);
  color: #fff;
}
.h-contacts {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}
.hc-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.hc-item i {
  color: var(--felt);
  font-size: 0.72rem;
}
a.hc-item:hover {
  color: var(--royal);
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--royal);
  font-size: 1.05rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: all 0.25s ease;
}
.burger:hover {
  background: var(--royal);
  color: #fff;
}

.mmenu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(10, 18, 32, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mmenu.open {
  opacity: 1;
  pointer-events: auto;
}
.mmenu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  padding: 1.6rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mmenu.open .mmenu-panel {
  transform: translateX(0);
}
.mmenu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.mmenu-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--royal);
  cursor: pointer;
  font-size: 1rem;
}
.mmenu-nav {
  display: flex;
  flex-direction: column;
}
.mmenu-nav a {
  padding: 0.85rem 0.4rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mmenu-nav a i {
  font-size: 0.7rem;
  color: var(--felt);
}
.mmenu-nav a:hover {
  color: var(--royal);
  padding-left: 0.7rem;
}
.mmenu-contacts {
  margin-top: auto;
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mmenu-contacts .hc-item {
  font-size: 0.9rem;
}

.site-footer {
  background: var(--night);
  color: #b9c7d8;
  margin-top: auto;
}
.f-top {
  padding: clamp(3rem, 7vw, 5rem) 0 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}
.f-brand img {
  width: 110px;
  margin-bottom: 1.1rem;
}
.f-brand p {
  font-size: 0.88rem;
  color: #93a5bb;
  max-width: 34ch;
}
.f-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #6fd3b8;
  margin-bottom: 1.2rem;
}
.f-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.f-links a {
  font-size: 0.88rem;
  color: #b9c7d8;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.f-links a i {
  font-size: 0.6rem;
  color: #3f5e82;
  transition: transform 0.25s ease;
}
.f-links a:hover {
  color: #fff;
}
.f-links a:hover i {
  transform: translateX(3px);
  color: #6fd3b8;
}
.f-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.88rem;
}
.f-contact i {
  color: #6fd3b8;
  width: 16px;
}
.f-contact a {
  color: #b9c7d8;
}
.f-contact a:hover {
  color: #fff;
}
.f-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.3rem;
}
.f-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #dfe8f2;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}
.f-socials a:hover {
  background: var(--felt);
  border-color: var(--felt);
  color: #fff;
  transform: translateY(-3px);
}
.f-reg {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.4rem 0;
  font-size: 0.78rem;
  color: #7d8fa6;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
}
.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.2rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: #7d8fa6;
}
.f-hours {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.84rem;
  margin-top: 1rem;
}
.f-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  padding-bottom: 0.35rem;
}
.f-hours span:last-child {
  color: #dfe8f2;
  font-weight: 600;
}

.hslider {
  position: relative;
  height: clamp(560px, 92vh, 780px);
  overflow: hidden;
  border-radius: 0 0 var(--r-l) var(--r-l);
}
.hslide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s ease,
    transform 1.4s ease;
  display: flex;
  align-items: flex-end;
}
.hslide.on {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.hslide-in {
  width: min(1240px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  z-index: 3;
}
.hs-dots {
  position: absolute;
  right: clamp(1.2rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.hs-dot.on {
  background: #fff;
  transform: scale(1.35);
}
.hs-arrows {
  position: absolute;
  left: clamp(1.2rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 5;
  display: flex;
  gap: 0.6rem;
}
.hs-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}
.hs-arrow:hover {
  background: #fff;
  color: var(--royal);
}
.hs-count {
  font-family: var(--font-d);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.vf {
  position: relative;
  border-radius: var(--r-l);
}
.vf::before,
.vf::after,
.vf .vf-c::before,
.vf .vf-c::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  z-index: 3;
}
.vf::before {
  top: 14px;
  left: 14px;
  border-right: 0;
  border-bottom: 0;
}
.vf::after {
  top: 14px;
  right: 14px;
  border-left: 0;
  border-bottom: 0;
}
.vf .vf-c::before {
  bottom: 14px;
  left: 14px;
  border-right: 0;
  border-top: 0;
}
.vf .vf-c::after {
  bottom: 14px;
  right: 14px;
  border-left: 0;
  border-top: 0;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  background: #fff;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.accordion-item + .accordion-item {
  margin-top: 0.7rem;
}
.accordion-item.open {
  border-color: var(--royal);
  box-shadow: var(--shadow-s);
}
.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-s);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  text-align: left;
}
.accordion-button .acc-ic {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  color: var(--royal);
  font-size: 0.7rem;
  transition: all 0.3s ease;
}
.accordion-item.open .acc-ic {
  background: var(--royal);
  color: #fff;
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body-in {
  padding: 0 1.3rem 1.2rem;
  color: var(--steel);
  font-size: 0.92rem;
}

.acc2-item {
  border-bottom: 1px solid var(--line);
}
.acc2-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.2rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  font-size: 0.95rem;
}
.acc2-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.acc2-body-in {
  padding: 0 0.2rem 1.1rem;
  color: var(--steel);
  font-size: 0.88rem;
}

.tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.seg {
  display: inline-flex;
  background: var(--mist-2);
  border-radius: 999px;
  padding: 0.3rem;
  gap: 0.2rem;
}
.seg button {
  border: 0;
  background: transparent;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--steel);
  cursor: pointer;
  transition: all 0.25s ease;
}
.seg button.on {
  background: #fff;
  color: var(--royal);
  box-shadow: var(--shadow-s);
}
.tabpane {
  display: none;
}
.tabpane.on {
  display: block;
  animation: fadeUp 0.5s ease;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.tl-v {
  position: relative;
  padding-left: 2rem;
}
.tl-v::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line-2);
}
.tl-item {
  position: relative;
  padding-bottom: 2rem;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-dot {
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--felt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.45rem;
  color: var(--felt);
}
.tl-time {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--royal);
  line-height: 1;
}

.ba {
  position: relative;
  border-radius: var(--r-m);
  overflow: hidden;
}
.ba img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-top {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: var(--ba, 50%);
}
.ba-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba, 50%);
  width: 2px;
  background: #fff;
  z-index: 2;
}
.ba-line::after {
  content: "\f337";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--royal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: var(--shadow-m);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  margin: 0;
}

.ptable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92rem;
}
.ptable th {
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 0.9rem 1rem;
  border-bottom: 2px solid var(--ink);
}
.ptable td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.ptable tr:hover td {
  background: var(--mist);
}
.ptable .pr {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--royal);
  white-space: nowrap;
}
.check i {
  color: var(--felt);
}
.cross i {
  color: #b9c4d2;
}

.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.45rem;
}
.input,
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1.05rem;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  font-family: var(--font-s);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.input:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 4px rgba(20, 51, 92, 0.09);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #d64545;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.08);
}
.err {
  display: none;
  font-size: 0.78rem;
  color: #d64545;
  margin-top: 0.35rem;
  font-weight: 600;
}
.field.invalid .err {
  display: block;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.fcheck {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--steel);
  cursor: pointer;
}
.fcheck input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--felt);
  flex-shrink: 0;
}
.fcheck.invalid {
  color: #d64545;
}

.toast {
  position: fixed;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 9999;
  background: var(--ink);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: 14px;
  box-shadow: var(--shadow-l);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(-140%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: min(420px, calc(100vw - 2rem));
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast i {
  color: #6fd3b8;
}
.toast.error i {
  color: #ff9d9d;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
.spinner.dark {
  border-color: rgba(20, 51, 92, 0.2);
  border-top-color: var(--royal);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ck {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 9990;
  display: none;
}
.ck.show {
  display: block;
}
.ck-in {
  width: min(680px, 100%);
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  box-shadow: var(--shadow-l);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.ck-in::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--grad-felt);
}
.ck-ic {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--felt);
  font-size: 1.1rem;
}
.ck p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--steel);
  flex: 1;
  min-width: 240px;
}
.ck-btns {
  display: flex;
  gap: 0.6rem;
}
.ck-btns .btn {
  padding: 0.6rem 1.3rem;
  font-size: 0.8rem;
}

.scrollx {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.scrollx > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}
.scrollx::-webkit-scrollbar {
  height: 5px;
}
.scrollx::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 99px;
}

.steps-bar {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}
.steps-bar span {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: var(--line-2);
  transition: background 0.3s ease;
}
.steps-bar span.on {
  background: var(--felt);
}
.step-pane {
  display: none;
}
.step-pane.on {
  display: block;
  animation: fadeUp 0.45s ease;
}

.list-check li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}
.list-check li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: var(--felt);
  font-size: 0.72rem;
}
.list-arrow li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}
.list-arrow li::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.3rem;
  color: var(--royal);
  font-size: 0.68rem;
}

.q-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--r-m);
}
.q-card::before {
  content: "\201C";
  font-family: var(--font-d);
  font-size: 5rem;
  line-height: 1;
  color: var(--felt);
  opacity: 0.25;
  position: absolute;
  top: 0.6rem;
  left: 1.2rem;
}

.ico-tile {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: var(--mist);
  color: var(--royal);
  flex-shrink: 0;
}
.ico-tile.felt {
  background: rgba(13, 92, 70, 0.1);
  color: var(--felt);
}
.ico-tile.dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hr-fade {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  margin: 2.5rem 0;
}

.aplay {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.aplay-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--royal);
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aplay-bar {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.aplay-bar span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #6fd3b8;
  transition: width 0.5s linear;
}
.aplay-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  font-variant-numeric: tabular-nums;
}
.aplay.playing .aplay-bar span {
  animation: aplayprog 60s linear forwards;
}
@keyframes aplayprog {
  to {
    width: 100%;
  }
}

.copy-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  background: var(--mist);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--royal);
  cursor: pointer;
  font-family: "Courier New", monospace;
  transition: all 0.25s ease;
}
.copy-chip:hover {
  border-color: var(--royal);
}
.copy-chip i {
  font-family: var(--font-s);
  font-style: normal;
  font-size: 0.75rem;
}

.goldframe {
  position: relative;
}
.goldframe::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: calc(var(--r-l) - 8px);
  pointer-events: none;
  z-index: 2;
}

.mosaic {
  display: grid;
  gap: 1rem;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-s);
}

.slot-badge {
  position: absolute;
  z-index: 3;
}

@media (min-width: 1180px) {
  .h-contacts {
    display: flex;
  }
}
@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .f-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 860px) {
  .section {
    padding: 3.2rem 0;
  }
  .hslider {
    height: 78vh;
    border-radius: 0 0 var(--r-m) var(--r-m);
  }
  .hs-dots {
    flex-direction: row;
    right: auto;
    left: 1.2rem;
    bottom: 1.2rem;
  }
  .hs-arrows {
    display: none;
  }
  .marquee {
    white-space: normal;
  }
  .mq-track {
    animation-duration: 20s;
  }
  .ck-in {
    padding: 1.1rem 1.2rem;
  }
  .ptable {
    font-size: 0.84rem;
  }
  .ptable th,
  .ptable td {
    padding: 0.7rem 0.6rem;
  }
}
@media (max-width: 640px) {
  .f-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .h-in {
    gap: 0.8rem;
  }
  .brand img {
    width: 74px;
  }
  .scrollx-m {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.8rem;
  }
  .scrollx-m > * {
    scroll-snap-align: start;
    flex-shrink: 0;
    min-width: 78%;
  }
  html {
    overflow-x: hidden;
  }
}
