@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=Manrope:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

:root {
  --paper: #f7f5f1;
  --paper-2: #ffffff;
  --ink: #0e0e11;
  --ink-2: #17171c;
  --ink-soft: #4a4a52;
  --line: #e5e2db;
  --wine: #7a1e2b;
  --wine-dark: #5a1420;
  --wine-soft: #f3e7e9;
  --silver: #b9b7b0;
  --shadow-lux: 0 24px 60px -24px rgba(14, 14, 17, 0.18);
  --radius: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--paper);
}

::-webkit-scrollbar-thumb {
  background: #c9c5bc;
  border: 3px solid var(--paper);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ink);
}

.container-x {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container-x {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.font-display {
  font-family: "Playfair Display", Georgia, serif;
}

.font-mono-x {
  font-family: "IBM Plex Mono", monospace;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

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

.eyebrow-light {
  color: rgba(255, 255, 255, 0.75);
}

.eyebrow-light::before {
  background: rgba(255, 255, 255, 0.5);
}

.display-1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.display-2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.6vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 600;
}

.display-3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  line-height: 1.16;
  font-weight: 600;
}

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

.hairline {
  height: 1px;
  background: var(--line);
  border: 0;
}

.hairline-dark {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.suit {
  font-family: "Playfair Display", Georgia, serif;
  user-select: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn i {
  font-size: 12px;
  transition: transform 0.35s ease;
}

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

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

.btn-dark:hover {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(122, 30, 43, 0.55);
}

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

.btn-wine:hover {
  background: var(--wine-dark);
  box-shadow: 0 14px 34px -12px rgba(90, 20, 32, 0.55);
}

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

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

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

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

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

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

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

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

.btn-sm {
  padding: 11px 20px;
  font-size: 10.5px;
}

.btn-block {
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
}

.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.link-arrow:hover::after {
  transform: scaleX(1);
}

.link-arrow i {
  transition: transform 0.35s ease;
  color: var(--wine);
}

.link-arrow:hover i {
  transform: translate(3px, -3px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(247, 245, 241, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition:
    box-shadow 0.4s ease,
    background 0.4s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px -20px rgba(14, 14, 17, 0.25);
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
}

.topbar a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}

.topbar a:hover {
  color: #fff;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.main-nav a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--wine);
  transition: width 0.35s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--wine);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.header-contacts .hc-mail {
  color: var(--wine);
  font-weight: 700;
}

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

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .header-contacts {
    display: none;
  }
  .topbar .tb-inner {
    justify-content: center;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 90px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

.mobile-menu nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  color: var(--ink);
}

.mobile-menu nav a i {
  color: var(--wine);
  font-size: 13px;
}

.mobile-contacts {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.mobile-contacts .mc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
}

.mobile-contacts i {
  color: var(--wine);
  width: 18px;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s;
}

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

.footer-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.footer-link {
  display: block;
  padding: 5px 0;
  font-size: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.35s;
}

.footer-link:hover,
.footer-social a:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  animation: marquee-left 30s linear infinite;
  will-change: transform;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee.slow .marquee-track {
  animation-duration: 55s;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
}

.hero-slider {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.1s ease,
    visibility 1.1s;
  display: flex;
  align-items: flex-end;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s linear;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 44px;
  height: 3px;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
  transition: background 0.3s;
}

.slider-dots-light .slider-dot-active {
  background: #fff;
}

.slider-dots-dark .slider-dot-active {
  background: var(--ink);
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s;
  backdrop-filter: blur(6px);
}

.slider-arrow:hover {
  background: #fff;
  color: var(--ink);
}

.slider-arrow-dark {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.slider-arrow-dark:hover {
  background: var(--ink);
  color: #fff;
}

@keyframes kenburns {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.slide.active .slide-bg {
  animation: kenburns 8s ease-out forwards;
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.accordion-head:hover {
  color: var(--wine);
}

.accordion-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--wine);
  transition: all 0.35s;
}

.accordion-item.open .accordion-icon {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body-inner {
  padding: 0 4px 26px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.tab-btn {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: var(--radius);
}

.tab-btn:hover {
  border-color: var(--ink);
}

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

.tab-panel {
  display: none;
}

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

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

.stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.case-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--ink);
}

.case-card img {
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s;
}

.case-card:hover img {
  transform: scale(1.06);
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 14, 0.82),
    rgba(10, 10, 14, 0.05) 55%
  );
  transition: background 0.5s;
}

.frame-img {
  position: relative;
  overflow: hidden;
  background: #e9e6df;
}

.frame-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.frame-img:hover img {
  transform: scale(1.05);
}

.frame-offset {
  position: relative;
}

.frame-offset::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--wine);
  z-index: -1;
  pointer-events: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

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

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

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wine);
  display: inline-block;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(122, 30, 43, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(122, 30, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(122, 30, 43, 0);
  }
}

.badge-dot {
  animation: pulse 1.8s infinite;
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-dark .lead-x,
.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.section-dark .eyebrow::before {
  background: rgba(255, 255, 255, 0.4);
}

.pattern-dots {
  background-image: radial-gradient(
    rgba(14, 14, 17, 0.14) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
}

.pattern-dots-light {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.16) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
}

.pattern-lines {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(14, 14, 17, 0.05) 0 1px,
    transparent 1px 12px
  );
}

.pattern-grid-light {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

.v-line {
  width: 1px;
  background: var(--line);
}

.h-line {
  height: 1px;
  background: var(--line);
}

.num-ghost {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(14, 14, 17, 0.18);
  user-select: none;
}

.num-ghost-light {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
}

.price-card {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lux);
}

.price-card.featured {
  border-color: var(--ink);
  box-shadow: var(--shadow-lux);
}

.price-flag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--wine);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  color: var(--ink-soft);
}

.check-list li i {
  color: var(--wine);
  margin-top: 4px;
}

.check-list-dark li {
  color: rgba(255, 255, 255, 0.75);
}

.input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  padding: 15px 18px;
  font-size: 14.5px;
  color: var(--ink);
  border-radius: var(--radius);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  font-family: "Manrope", sans-serif;
}

.input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(14, 14, 17, 0.07);
}

.input.error {
  border-color: #b3261e;
  box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.12);
}

.input::placeholder {
  color: #9b988f;
}

.field-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  display: block;
}

.field-error {
  color: #b3261e;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.field-error.visible {
  display: block;
}

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

.checkbox-input {
  appearance: none;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 1px solid var(--silver);
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: all 0.25s;
}

.checkbox-input:checked {
  background: var(--ink);
  border-color: var(--ink);
}

.checkbox-input:checked::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  font-size: 10px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.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;
}

.spinner.active {
  display: inline-block;
}

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

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 140%);
  background: var(--ink);
  color: #fff;
  padding: 15px 24px;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -12px rgba(14, 14, 17, 0.4);
  z-index: 9999;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: min(92vw, 480px);
}

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

.toast.toast-error {
  background: #b3261e;
}

.toast i {
  font-size: 15px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px -18px rgba(14, 14, 17, 0.35);
  padding: 26px;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: cookieIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes cookieIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.magnetic {
  transition: transform 0.25s ease-out;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: all 0.4s;
  box-shadow: 0 14px 30px -10px rgba(14, 14, 17, 0.4);
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--wine);
}

.tag-chip {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 100px;
}

.tag-chip-dark {
  border-color: var(--line);
  color: var(--ink-soft);
  background: #fff;
}

.hover-line {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.45s ease;
}

.hover-line:hover {
  background-size: 100% 100%;
}

.num-outline {
  font-family: "Playfair Display", Georgia, serif;
  color: transparent;
  -webkit-text-stroke: 1px rgba(14, 14, 17, 0.25);
}

.process-rail {
  position: relative;
}

.process-rail::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

@media (min-width: 1024px) {
  .process-rail-lg::before {
    left: 50%;
  }
}

.process-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid var(--wine);
  background: var(--paper);
  position: relative;
  flex: 0 0 auto;
}

.process-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--wine);
}

.hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  animation: pulse 2s infinite;
}

.hotspot::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-family: "IBM Plex Mono", monospace;
  padding: 7px 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.hotspot:hover::after {
  opacity: 1;
}

.compare-wrap {
  position: relative;
  overflow: hidden;
  user-select: none;
}

.compare-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  z-index: 5;
}

.compare-handle::after {
  content: "\f337";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
  margin: 0;
}

.countdown-cell {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.filmstrip-track {
  transform: rotate(-3deg);
}

@media (max-width: 768px) {
  .filmstrip-track {
    transform: rotate(0deg);
  }
}

.film-hole {
  width: 14px;
  height: 20px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
}

.stack-card {
  position: sticky;
  top: 96px;
}

@media (max-width: 768px) {
  .stack-card {
    position: static;
  }
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wine);
}

.table-price {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table-price th {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--ink);
  font-weight: 500;
}

.table-price td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink-soft);
}

.table-price tr:hover td {
  background: rgba(14, 14, 17, 0.025);
}

.table-price .tp-name {
  color: var(--ink);
  font-weight: 700;
}

.table-price a {
  color: var(--wine);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.search-input-wrap {
  position: relative;
}

.search-input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  padding: 17px 20px 17px 50px;
  font-size: 15px;
  border-radius: var(--radius);
  font-family: "Manrope", sans-serif;
}

.search-input:focus {
  outline: none;
  border-color: var(--ink);
}

.faq-card {
  background: #fff;
  border: 1px solid var(--line);
  transition: all 0.35s;
}

.faq-card:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-lux);
}

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

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.quote-glyph {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(6rem, 12vw, 11rem);
  line-height: 0.6;
  color: var(--wine);
  opacity: 0.16;
  user-select: none;
}

.avatar-stack img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -12px;
  background: #ddd9d0;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.audio-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 34px;
}

.audio-wave span {
  width: 3px;
  background: currentColor;
  border-radius: 2px;
  animation: wave 1.1s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    height: 6px;
  }
  50% {
    height: 22px;
  }
}

.logo-tile {
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  filter: grayscale(1);
  opacity: 0.75;
  transition: all 0.4s;
}

.logo-tile:hover {
  filter: grayscale(0);
  opacity: 1;
}

.logo-tile img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
}

.marquee-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 34px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.marquee-logo:hover {
  opacity: 1;
}

.marquee-logo img {
  height: 26px;
  width: auto;
  filter: grayscale(1) brightness(2.4);
}

.marquee-logo-light img {
  filter: grayscale(1) brightness(3);
}

.split-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  z-index: 4;
  cursor: ew-resize;
}

.compare-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(14, 14, 17, 0.75);
  color: #fff;
  padding: 7px 13px;
  backdrop-filter: blur(4px);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.spec-row-dark {
  border-color: rgba(255, 255, 255, 0.12);
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 14px 4px;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
}

.newsletter-input-dark {
  border-bottom-color: var(--line);
  color: var(--ink);
}

.newsletter-input-dark::placeholder {
  color: #9b988f;
}

.newsletter-input-dark:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

.newsletter-input:focus {
  outline: none;
}

.tag-pill {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  background: var(--wine-soft);
  padding: 6px 12px;
  border-radius: 100px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s;
  display: block;
}

.blog-card:hover {
  box-shadow: var(--shadow-lux);
  transform: translateY(-6px);
}

.blog-card .frame-img {
  overflow: hidden;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.archive-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 10px;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.3s,
    padding 0.3s;
  position: relative;
}

.archive-row:hover {
  background: #fff;
  padding-left: 22px;
}

.archive-row .row-preview {
  position: fixed;
  width: 240px;
  height: 160px;
  pointer-events: none;
  z-index: 40;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition:
    opacity 0.3s,
    transform 0.3s;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(14, 14, 17, 0.45);
  background: var(--ink);
}

.archive-row:hover .row-preview {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
  .archive-row {
    grid-template-columns: 44px 1fr;
  }
  .archive-row .row-preview {
    display: none;
  }
}

.service-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s,
    border-color 0.45s;
}

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

.service-card .sc-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(14, 14, 17, 0.22);
  transition: all 0.45s;
}

.service-card:hover .sc-num {
  -webkit-text-stroke: 1px var(--wine);
}

.accordion-svc {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: all 0.4s ease;
}

.accordion-service.open {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.accordion-service .acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-option {
  border: 1px solid var(--line);
  background: #fff;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
}

.calc-option:hover {
  border-color: var(--ink);
}

.calc-option.selected {
  border-color: var(--wine);
  background: var(--wine-soft);
}

.calc-option .co-check {
  width: 20px;
  height: 20px;
  border: 1px solid var(--silver);
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  transition: all 0.3s;
}

.calc-option.selected .co-check {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.calc-total {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background: var(--line);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(14, 14, 17, 0.35);
}

.range-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  border: 3px solid #fff;
}

.progress-line {
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.progress-line span {
  position: absolute;
  inset: 0;
  background: var(--wine);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-line .progress-full {
  transform: scaleX(1);
}

.progress-line .progress-84 {
  transform: scaleX(0.84);
}

.timeline-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--wine);
  background: var(--paper);
  position: relative;
  flex: 0 0 auto;
}

.timeline-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--wine);
}

.vertical-rail {
  position: relative;
  padding-left: 34px;
}

.vertical-rail::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.vertical-rail .timeline-dot {
  position: absolute;
  left: 0;
  top: 4px;
}

.chip-day {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  transition: all 0.3s;
}

.chip-day:hover {
  color: #fff;
  border-color: #fff;
}

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

.slot-chip {
  border: 1px solid var(--line);
  padding: 10px 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  cursor: pointer;
  background: #fff;
  transition: all 0.25s;
}

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

.slot-chip.selected {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.concierge-card {
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.concierge-card:hover,
.concierge-card.selected {
  border-color: var(--ink);
  box-shadow: var(--shadow-lux);
}

.concierge-card.selected {
  border-color: var(--wine);
  background: var(--wine-soft);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2e7d4f;
  display: inline-block;
  animation: pulse 2s infinite;
}

.status-dot.off {
  background: #b9b7b0;
  animation: none;
}

.hero-console {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kicker-line::before,
.kicker-line::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.img-duotone {
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.7s ease;
}

.img-duotone-hover:hover img {
  filter: grayscale(0);
}

.link-underline {
  color: var(--wine);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.link-underline:hover {
  color: var(--wine-dark);
}

.section-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}

.divider-suits {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--silver);
  font-size: 13px;
}

.divider-suits::before,
.divider-suits::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-price td,
.table-price th {
  min-width: 120px;
}

@media (max-width: 640px) {
  .table-price {
    font-size: 13px;
  }
  .table-price td,
  .table-price th {
    padding: 12px 10px;
  }
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.snap-x-mandatory {
  scroll-snap-type: x mandatory;
}

.snap-start-x {
  scroll-snap-align: start;
}

.wow-num {
  background: linear-gradient(
    120deg,
    var(--ink) 30%,
    var(--wine) 60%,
    var(--ink) 70%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 5s linear infinite;
}

@keyframes sheen {
  to {
    background-position: 200% center;
  }
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(14, 14, 17, 0.3);
}

.text-outline-light {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.rotate-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
}

@media (max-width: 768px) {
  .vertical-label {
    display: none;
  }
}

.card-shadow {
  box-shadow: var(--shadow-lux);
}

.hover-lift {
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lux);
}

.section-pad {
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(64px, 9vw, 120px);
}

.divider-grad {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.img-grayscale {
  filter: grayscale(1);
  transition: filter 0.6s ease;
}

.img-grayscale-hover:hover img {
  filter: grayscale(0);
}

.link-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(122, 30, 43, 0.4);
  transition: text-decoration-color 0.3s;
}

.link-underline:hover {
  text-decoration-color: var(--wine);
}

.prose-x p {
  margin-bottom: 1.1em;
  line-height: 1.85;
  color: var(--ink-soft);
}

.prose-x h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin: 1.6em 0 0.6em;
  color: var(--ink);
}

.prose-x h4 {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 1.4em 0 0.5em;
  color: var(--ink);
}

.prose-x ul {
  margin: 0.8em 0 1.2em 1.2em;
  list-style: disc;
  color: var(--ink-soft);
}

.prose-x li {
  margin-bottom: 0.5em;
  line-height: 1.7;
}

.prose-x a {
  color: var(--wine);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-x strong {
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand-logo img {
  height: 44px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.main-nav a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--wine);
  transition: width 0.35s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--wine);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

@media (max-width: 1279px) {
  .main-nav {
    display: none;
  }
}

.btn-sm-compact {
  padding: 12px 20px;
  font-size: 10px;
}

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

@media (max-width: 1279px) {
  .burger {
    display: inline-flex;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 34px;
  transform: translateX(102%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

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

.mm-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 50%;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.mm-close:hover {
  background: var(--wine);
  border-color: var(--wine);
}

.mm-primary {
  list-style: none;
  margin-top: 64px;
}

.mm-primary li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mm-primary a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 2px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  color: #fff;
  transition:
    color 0.3s,
    padding-left 0.3s;
}

.mm-primary a:hover {
  color: var(--wine);
  padding-left: 10px;
}

.mm-arr {
  font-size: 13px;
  color: var(--wine);
  transform: rotate(-45deg);
}

.mm-group-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 26px 0 10px;
}

.mm-services {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.mm-services a {
  display: block;
  padding: 9px 2px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
}

.mm-services a:hover {
  color: #fff;
}

.mm-contacts {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mm-contacts p,
.mm-contacts a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mm-contacts i {
  color: var(--wine);
  width: 16px;
  text-align: center;
}

.mm-contacts a:hover {
  color: #fff;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  transition: color 0.3s;
}

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

.footer-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  padding: 5px 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.66);
}

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

.footer-social {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.35s;
}

.footer-social:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 13px 2px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-input:focus {
  border-bottom-color: #fff;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: all 0.4s ease;
  box-shadow: 0 14px 34px -10px rgba(14, 14, 17, 0.45);
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--wine);
}

#form-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 140%);
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 15px 24px;
  border-radius: 8px;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 50px -12px rgba(14, 14, 17, 0.5);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: min(92vw, 480px);
}

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

#form-toast .fa-circle-check {
  color: #4caf7d;
}

#form-toast.toast-error .fa-circle-exclamation {
  color: #e5484d;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 150;
  max-width: 470px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 30px 80px -20px rgba(14, 14, 17, 0.4);
  padding: 24px;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: cookieIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes cookieIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-btn {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--line);
  background: #f1eee8;
  color: var(--ink);
}

.cookie-btn:hover {
  border-color: var(--ink);
}

.cookie-btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.cookie-btn-primary:hover {
  background: var(--wine);
  border-color: var(--wine);
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  html,body{overflow-x:hidden}
}