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

:root {
  --ivory: #faf8f4;
  --paper: #f3efe7;
  --card: #ffffff;
  --ink: #0f1f38;
  --ink-soft: #47536b;
  --ink-mute: #7a8296;
  --navy: #0f1f38;
  --navy-deep: #0a1526;
  --burgundy: #7a1f3d;
  --burgundy-dark: #5c1630;
  --burgundy-soft: #f3e6eb;
  --silver: #c9cdd4;
  --line: #e6e0d4;
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 50px rgba(15, 31, 56, 0.1);
  --shadow-sm: 0 6px 20px rgba(15, 31, 56, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
html,
body {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
}

::selection {
  background: var(--burgundy);
  color: #fff;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.sec {
  padding: 96px 0;
  position: relative;
}

.sec--tight {
  padding: 64px 0;
}

.sec--paper {
  background: var(--paper);
}

.sec--navy {
  background: var(--navy);
  color: #eef1f6;
}

.sec--navy .lead,
.sec--navy .muted {
  color: rgba(238, 241, 246, 0.72);
}

.bg-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.bg-photo .lead,
.bg-photo .muted {
  color: rgba(255, 255, 255, 0.78);
}

.bg-photo .kicker {
  color: rgba(255, 255, 255, 0.85);
}

.bg-photo .kicker::before {
  background: rgba(255, 255, 255, 0.5);
}

.sec-head {
  max-width: 720px;
  margin-bottom: 52px;
}

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

.sec-head--center .kicker {
  justify-content: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--burgundy);
  display: inline-block;
}

.sec-head--center .kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  display: inline-block;
}

h1,
h2,
h3,
.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
}

.h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: -0.01em;
}

.h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  letter-spacing: -0.01em;
}

.h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-soft);
}

.muted {
  color: var(--ink-mute);
}

.accent-i {
  font-style: italic;
  color: var(--burgundy);
}

.num-outline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(15, 31, 56, 0.22);
}

.grid {
  display: grid;
  gap: 28px;
}

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

.g3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.split--rev {
  grid-template-columns: 0.95fr 1.05fr;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--silver);
}

.card--flat:hover {
  transform: none;
  box-shadow: none;
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy-soft);
  color: var(--burgundy);
  font-size: 20px;
  margin-bottom: 20px;
}

.bg-photo .card,
.sec--navy .card {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-dark);
  color: #fff;
  backdrop-filter: blur(6px);
}

.bg-photo .card__icon,
.sec--navy .card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

.btn--fill {
  background: var(--burgundy);
  color: #fff;
}

.btn--fill:hover {
  background: var(--burgundy-dark);
  box-shadow: 0 12px 30px rgba(122, 31, 61, 0.35);
}

.btn--line {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn--line:hover {
  background: var(--ink);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--ink);
}

.btn--light:hover {
  background: var(--paper);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: #fff;
}

.badge i {
  color: var(--burgundy);
}

.bg-photo .badge,
.sec--navy .badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-dark);
  color: rgba(255, 255, 255, 0.85);
}

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

.chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--ink-soft);
}

.chip:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.list-check li i {
  color: var(--burgundy);
  margin-top: 4px;
  font-size: 13px;
}

.bg-photo .list-check li,
.sec--navy .list-check li {
  color: rgba(255, 255, 255, 0.82);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.spec-row dt {
  color: var(--ink-mute);
  font-weight: 500;
}

.spec-row dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
}

.price-row .t {
  font-weight: 600;
  font-size: 16px;
}

.price-row .d {
  color: var(--ink-mute);
  font-size: 13.5px;
  flex: 1;
}

.price-row .p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--burgundy);
  white-space: nowrap;
}

.stat {
  text-align: left;
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  display: block;
}

.bg-photo .stat .num,
.sec--navy .stat .num {
  color: #fff;
}

.stat .lbl {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 10px;
  display: block;
}

.bg-photo .stat .lbl,
.sec--navy .stat .lbl {
  color: rgba(255, 255, 255, 0.6);
}

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--tall {
  aspect-ratio: 3/4;
}

.media-frame--wide {
  aspect-ratio: 16/10;
}

.media-frame--sq {
  aspect-ratio: 1/1;
}

.media-frame--round {
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 13px;
}

.float-card .big {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.marquee {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.marquee i {
  color: var(--burgundy);
  font-size: 10px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-top {
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-soft);
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.header-top .ht-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-top .ht-item i {
  color: var(--burgundy);
  font-size: 11px;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

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

.brand img {
  height: 52px;
  width: auto;
}

.brand .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.1;
}

.brand .brand-sub {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-list a {
  display: inline-block;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav-list a:hover {
  color: var(--burgundy);
  background: var(--burgundy-soft);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 17px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--navy-deep);
  color: #fff;
  padding: 28px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.7, 0, 0.3, 1);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu .mm-close {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.mobile-menu .mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.brand-name--light {
  color: #fff;
}

.mobile-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.mobile-menu nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.mobile-menu .mm-contacts {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
}

.mobile-menu .mm-contacts i {
  color: var(--burgundy);
  width: 20px;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(238, 241, 246, 0.78);
  font-size: 14px;
  position: relative;
}

.footer-crest {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--line-dark);
  text-align: center;
}

.footer-crest img {
  height: 74px;
  margin: 0 auto 18px;
}

.footer-crest .f-name {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
}

.footer-crest .f-sub {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 0.9fr 1.2fr;
  gap: 40px;
  padding: 56px 0;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(238, 241, 246, 0.68);
  transition: color 0.25s;
  font-size: 13.5px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact div {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.55;
}

.footer-contact i {
  color: var(--burgundy);
  margin-top: 3px;
  font-size: 13px;
}

.footer-contact a {
  color: inherit;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-legal {
  border-top: 1px solid var(--line-dark);
  padding: 24px 0;
  font-size: 12px;
  color: rgba(238, 241, 246, 0.45);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(238, 241, 246, 0.5);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
  transform: translateY(-3px);
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  display: none;
  min-height: calc(100vh - 120px);
  align-items: stretch;
}

.hero-slide.is-active {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-slide__content {
  padding: clamp(48px, 8vw, 110px) clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide__media {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 420px;
}

.hero-slide__media .float-card {
  left: 28px;
  bottom: 28px;
}

.hero-nav {
  position: absolute;
  bottom: 36px;
  left: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
}

.hero-dot {
  width: 42px;
  height: 3px;
  background: var(--silver);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.hero-dot.is-active {
  background: var(--burgundy);
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-arrow:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 14px 24px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.25s;
}

.tab-btn.is-active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}

.bg-photo .accordion-item,
.sec--navy .accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-dark);
}

.accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
  font-family: var(--font-body);
}

.bg-photo .accordion-button,
.sec--navy .accordion-button {
  color: #fff;
}

.accordion-button i {
  color: var(--burgundy);
  transition: transform 0.3s;
  font-size: 13px;
}

.accordion-item.is-open .accordion-button i {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.accordion-body > * {
  padding: 0 26px 22px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.bg-photo .accordion-body > *,
.sec--navy .accordion-body > * {
  color: rgba(255, 255, 255, 0.75);
}

.timeline-h {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 0;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
}

.timeline-node {
  padding: 28px 24px;
  border-left: 1px solid var(--line-dark);
  position: relative;
  min-height: 200px;
}

.timeline-node::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 34px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 0 5px rgba(122, 31, 61, 0.18);
}

.timeline-node .yr {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.timeline-node p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.timeline-v {
  position: relative;
  padding-left: 34px;
}

.timeline-v::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.timeline-v .tv-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-v .tv-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 0 4px var(--ivory);
}

.compare {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  user-select: none;
}

.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare .cmp-after {
  clip-path: inset(0 0 0 var(--cmp, 50%));
}

.compare .cmp-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--cmp, 50%);
  width: 2px;
  background: #fff;
  cursor: ew-resize;
  z-index: 3;
}

.compare .cmp-bar::after {
  content: "\f337";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.mode-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
}

.mode-toggle button {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: all 0.3s;
}

.mode-toggle button.is-active {
  background: #fff;
  color: var(--ink);
}

.mode-pane {
  display: none;
}

.mode-pane.is-active {
  display: block;
  animation: fadeUp 0.5s ease;
}

.slider-x {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 380px);
  gap: 24px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.slider-x > * {
  scroll-snap-align: start;
}

.quote-xl {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-style: italic;
  line-height: 1.4;
  font-weight: 500;
}

.sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--burgundy);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 72px;
  padding-bottom: 36px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--burgundy);
}

.step::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 46px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.step:last-child::after {
  display: none;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}

.tbl th {
  text-align: left;
  padding: 16px 20px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.tbl td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.tbl tr:last-child td {
  border-bottom: none;
}

.tbl .price {
  font-weight: 700;
  color: var(--burgundy);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 16px;
}

.pkg-card {
  display: flex;
  flex-direction: column;
}

.pkg-card .pkg-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.pkg-card .pkg-price small {
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink-mute);
}

.pkg-card--hl {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.pkg-card--hl .pkg-price {
  color: #fff;
}

.pkg-card--hl .list-check li {
  color: rgba(255, 255, 255, 0.8);
}

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

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

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  width: 100%;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(122, 31, 61, 0.1);
}

.field.is-error input,
.field.is-error select,
.field.is-error textarea {
  border-color: #c0392b;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
}

.field .err {
  font-size: 12px;
  color: #c0392b;
  display: none;
}

.field.is-error .err {
  display: block;
}

.check-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--burgundy);
  flex-shrink: 0;
}

.check-field a {
  color: var(--burgundy);
  text-decoration: underline;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.is-loading .spinner {
  display: inline-block;
}

.is-loading .btn-label {
  opacity: 0.6;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 120px);
  background: var(--navy);
  color: #fff;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 400;
  box-shadow: var(--shadow);
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  max-width: calc(100vw - 40px);
}

.toast i {
  color: #fff;
}

.toast.is-show {
  transform: translate(-50%, 0);
}

.cookie-card {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 500;
  width: min(400px, calc(100vw - 44px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  display: none;
}

.cookie-card.is-show {
  display: block;
  animation: fadeUp 0.5s ease;
}

.cookie-card .ck-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--burgundy-soft);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.cookie-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.cookie-card .ck-actions {
  display: flex;
  gap: 10px;
}

.cookie-card .ck-btn {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: all 0.25s;
}

.cookie-card .ck-btn--acc {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.cookie-card .ck-btn--acc:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
  min-height: 380px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 380px;
}

.cta-band {
  text-align: center;
  padding: clamp(48px, 7vw, 90px) 24px;
}

.gal-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gal-masonry .media-frame:nth-child(1) {
  grid-row: span 2;
}

.gal-masonry .media-frame:nth-child(4) {
  grid-column: span 2;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 100;
  background: rgba(15, 31, 56, 0.96);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 14px 0;
  display: none;
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-hidden {
  display: none !important;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--burgundy);
}

.arrow-link i {
  transition: transform 0.3s;
}

.arrow-link:hover i {
  transform: translateX(5px);
}

.dot-sep {
  color: var(--burgundy);
  margin: 0 10px;
}

.vignette-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.vignette-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.6;
}

.vignette-list li i {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
}

.toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list a {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  transition: all 0.25s;
  background: #fff;
}

.toc-list a:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.prose p {
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 15.5px;
}

.prose h3 {
  margin: 34px 0 14px;
  font-size: 22px;
}

.prose ul {
  color: var(--ink-soft);
  line-height: 1.85;
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.prose a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.float-card--play {
  left: auto;
  right: 28px;
  bottom: 28px;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-size: 18px;
  transition: transform 0.3s;
}

.float-card--play:hover {
  transform: scale(1.08);
}

.mode-toggle-wrap {
  text-align: center;
}

.c-burg {
  color: var(--burgundy);
}

.ic-soft {
  background: var(--burgundy-soft);
  color: var(--burgundy);
}

.online {
  color: #3d6fa3;
  font-weight: 600;
}

.bg-soft {
  background: var(--burgundy-soft);
  color: var(--burgundy);
}

@media (max-width: 1024px) {
  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .split--rev {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .nav-list {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-slide.is-active {
    grid-template-columns: 1fr;
  }
  .hero-slide__media {
    min-height: 55vh;
    order: 2;
  }
  .hero-slide {
    min-height: auto;
  }
  .hero-nav {
    position: static;
    padding: 0 clamp(24px, 5vw, 80px) 30px;
  }
  .sec {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .g2,
  .g3,
  .g4 {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .gal-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }
  .gal-masonry .media-frame:nth-child(4) {
    grid-column: span 2;
  }
  .header-top .ht-hide-m {
    display: none;
  }
  .card {
    padding: 26px;
  }
  .sec {
    padding: 60px 0;
  }
  .sec-head {
    margin-bottom: 36px;
  }
  .btn {
    padding: 14px 26px;
    font-size: 13px;
  }
  .h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }
  .hero-slide__content {
    padding: 40px 24px;
  }
  .sticky-cta {
    display: block;
  }
  .step {
    padding-left: 56px;
  }
  .step::before {
    font-size: 24px;
  }
  .step::after {
    left: 16px;
  }
}
