:root {
  --ink: #16130f;
  --ink-soft: #3d3a34;
  --muted: #6d675d;
  --paper: #faf8f4;
  --paper-2: #f3efe7;
  --panel: #ffffff;
  --line: #e6e0d4;
  --line-dark: #cdc6b8;
  --accent: #8b1e2d;
  --accent-deep: #671423;
  --accent-soft: #f6e8ea;
  --night: #16130f;
  --night-2: #221d17;
  --platinum: #b9b2a4;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 50px -22px rgba(22, 19, 15, 0.28);
  --shadow-card: 0 10px 34px -14px rgba(22, 19, 15, 0.22);
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.display {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.01em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

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

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

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

.sec-dark {
  background: var(--night);
  color: #f4efe6;
}

.sec-dark h1,
.sec-dark h2,
.sec-dark h3,
.sec-dark h4 {
  color: #faf6ee;
}

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

.bg-media {
  background-size: cover;
  background-position: center;
  color: #f6f1e7;
}

.bg-media h1,
.bg-media h2,
.bg-media h3,
.bg-media h4,
.bg-media p,
.bg-media li {
  color: #f6f1e7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.sec-dark .eyebrow,
.bg-media .eyebrow {
  color: #e5b1b8;
}

.sec-dark .eyebrow::before,
.bg-media .eyebrow::before {
  background: #e5b1b8;
}

.sec-title {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  font-weight: 600;
  margin: 14px 0 18px;
}

.sec-title em {
  font-style: italic;
  color: var(--accent);
}

.sec-dark .sec-title em,
.bg-media .sec-title em {
  color: #e5b1b8;
}

.lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 640px;
}

.sec-dark .lead,
.bg-media .lead {
  color: #cfc8ba;
}

.prose p {
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.prose a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(139, 30, 45, 0.35);
  transition:
    border-color 0.2s,
    color 0.2s;
}

.prose a:hover {
  color: var(--accent-deep);
  border-color: var(--accent-deep);
}

.sec-dark .prose p,
.bg-media .prose p {
  color: #d8d1c2;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
  text-decoration: none;
}

.btn i {
  font-size: 12px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(139, 30, 45, 0.55);
}

.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--night);
  color: #f4efe6;
}

.btn-dark:hover {
  background: var(--night-2);
  transform: translateY(-2px);
}

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

.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-ghost-light {
  border: 1px solid rgba(250, 246, 238, 0.4);
  color: #faf6ee;
}

.btn-ghost-light:hover {
  border-color: #faf6ee;
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(139, 30, 45, 0.2);
}

.badge-dark {
  background: rgba(250, 246, 238, 0.08);
  color: #e8e1d3;
  border: 1px solid rgba(250, 246, 238, 0.22);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.card-pad {
  padding: 30px;
}

.card-dark {
  background: var(--night-2);
  border: 1px solid rgba(250, 246, 238, 0.12);
  color: #efe9dc;
}

.card-dark h3,
.card-dark h4 {
  color: #faf6ee;
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

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

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

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.sec-dark .stat-num,
.bg-media .stat-num {
  color: #e5b1b8;
}

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.icon-tile-dark {
  background: rgba(250, 246, 238, 0.08);
  color: #e5b1b8;
  border: 1px solid rgba(250, 246, 238, 0.15);
}

.site-topbar {
  background: var(--night);
  color: #cfc8ba;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.site-topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.site-topbar i {
  color: #e5b1b8;
  margin-right: 7px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

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

.site-header.scrolled {
  box-shadow: 0 12px 34px -18px rgba(22, 19, 15, 0.35);
}

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

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

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

.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: block;
  padding: 10px 13px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: 999px;
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s;
}

.main-nav a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--night);
  color: #f4efe6;
  padding: 26px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  overflow-y: auto;
}

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

.mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mm-brand {
  color: #f4efe6;
}

.mobile-menu .mm-close {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(250, 246, 238, 0.3);
  background: transparent;
  color: #f4efe6;
  font-size: 17px;
  cursor: pointer;
}

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

.mobile-menu ul a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 4px;
  font-family: var(--font-display);
  font-size: 24px;
  color: #f4efe6;
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 246, 238, 0.12);
}

.mobile-menu ul a i {
  font-size: 13px;
  color: #e5b1b8;
}

.mm-contacts {
  font-size: 13px;
  line-height: 2;
  color: #cfc8ba;
}

.mm-contacts i {
  color: #e5b1b8;
  width: 20px;
}

.hero-slider {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--accent);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease,
    visibility 1s;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-slide .shell {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(250, 246, 238, 0.3);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f4efe6;
  background: rgba(22, 19, 15, 0.35);
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(42px, 7.5vw, 96px);
  line-height: 1.02;
  color: #faf6ee;
  font-weight: 600;
  margin: 22px 0;
}

.hero-title em {
  font-style: italic;
  color: #e5b1b8;
}

.hero-lead {
  font-size: 17px;
  line-height: 1.75;
  color: #d8d1c2;
  max-width: 560px;
}

.hero-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  border: 0;
  background: rgba(250, 246, 238, 0.3);
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}

.hero-dots button.active {
  background: #e5b1b8;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 238, 0.35);
  background: rgba(22, 19, 15, 0.3);
  color: #f4efe6;
  cursor: pointer;
  transition: background 0.25s;
  backdrop-filter: blur(4px);
}

.hero-nav:hover {
  background: rgba(139, 30, 45, 0.75);
}

.hero-nav.prev {
  left: 26px;
}
.hero-nav.next {
  right: 26px;
}

.status-bar {
  display: flex;
  gap: 0;
  border: 1px solid rgba(250, 246, 238, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(22, 19, 15, 0.45);
  backdrop-filter: blur(8px);
}

.status-item {
  flex: 1;
  padding: 18px 22px;
  border-right: 1px solid rgba(250, 246, 238, 0.14);
}

.status-item:last-child {
  border-right: 0;
}

.status-item i {
  color: #e5b1b8;
  margin-right: 8px;
}

.status-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b3aa97;
}

.status-value {
  font-size: 15px;
  font-weight: 700;
  color: #faf6ee;
  margin-top: 5px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.tile-img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
}

.tile-img-tall {
  aspect-ratio: 3/4;
  width: 100%;
  object-fit: cover;
}

.chip-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.chip {
  flex: 0 0 auto;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s;
}

.chip.active,
.chip:hover {
  background: var(--night);
  color: #f4efe6;
  border-color: var(--night);
}

.h-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
}

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

.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.marquee-track {
  display: inline-flex;
  gap: 64px;
  animation: marquee 36s linear infinite;
  will-change: transform;
}

.marquee span {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 34px);
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 64px;
}

.marquee span i {
  color: var(--accent);
  font-size: 14px;
}

.sec-dark .marquee {
  border-color: rgba(250, 246, 238, 0.14);
}

.sec-dark .marquee span {
  color: #b3aa97;
}

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

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

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

.timeline-item {
  position: relative;
  padding-bottom: 26px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item.open {
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.faq-question i {
  color: var(--accent);
  transition: transform 0.3s;
  font-size: 14px;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.sec-dark .faq-item {
  background: var(--night-2);
  border-color: rgba(250, 246, 238, 0.12);
}

.sec-dark .faq-question {
  color: #faf6ee;
}

.sec-dark .faq-answer-inner {
  color: #b3aa97;
}

.countdown {
  display: flex;
  gap: 14px;
}

.count-cell {
  min-width: 86px;
  text-align: center;
  padding: 18px 12px;
  border-radius: var(--radius);
  background: rgba(250, 246, 238, 0.06);
  border: 1px solid rgba(250, 246, 238, 0.16);
}

.count-cell .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: #faf6ee;
  line-height: 1;
}

.count-cell .lab {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b3aa97;
  margin-top: 8px;
}

.wheel-wrap {
  position: relative;
  width: min(380px, 82vw);
  aspect-ratio: 1;
  margin: 0 auto;
}

.wheel-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid var(--night);
  background: conic-gradient(
    from 0deg,
    #8b1e2d 0deg 30deg,
    #f3efe7 30deg 60deg,
    #221d17 60deg 90deg,
    #8b1e2d 90deg 120deg,
    #f3efe7 120deg 150deg,
    #221d17 150deg 180deg,
    #8b1e2d 180deg 210deg,
    #f3efe7 210deg 240deg,
    #221d17 240deg 270deg,
    #8b1e2d 270deg 300deg,
    #f3efe7 300deg 330deg,
    #221d17 330deg 360deg
  );
  box-shadow:
    inset 0 0 0 6px rgba(250, 246, 238, 0.15),
    var(--shadow-soft);
  transition: transform 4s cubic-bezier(0.15, 0.9, 0.25, 1);
  position: relative;
}

.wheel-disc::after {
  content: "";
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: var(--night);
  border: 3px solid rgba(250, 246, 238, 0.2);
}

.wheel-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  font-size: 30px;
  z-index: 3;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.table-card {
  border: 1px solid rgba(250, 246, 238, 0.15);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(250, 246, 238, 0.05);
}

.table-card .t-name {
  font-family: var(--font-display);
  font-size: 19px;
  color: #faf6ee;
  font-weight: 600;
}

.table-card .t-meta {
  font-size: 12px;
  color: #b3aa97;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-dark);
}

.price-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: top;
}

.price-table tr:hover td {
  background: #fbfaf6;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

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

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(139, 30, 45, 0.12);
}

.input.err,
.textarea.err {
  border-color: #c0392b;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12);
}

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

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

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

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

.check-row input {
  margin-top: 3px;
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.check-row a {
  color: var(--accent);
  font-weight: 600;
}

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

.btn-loader {
  display: none;
  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;
}

.btn.loading .btn-loader {
  display: inline-block;
}

.btn.loading .btn-label {
  opacity: 0.7;
}

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

.form-note {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 18px;
}

.form-note.ok {
  display: flex;
  background: #eef6ee;
  border: 1px solid #cfe3cf;
  color: #2d5a34;
}

.form-note.bad {
  display: flex;
  background: #fbeeec;
  border: 1px solid #eccfca;
  color: #8b2d20;
}

.form-note i {
  margin-top: 2px;
}

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

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast i {
  color: #e5b1b8;
}

.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 2500;
  display: none;
  max-width: 640px;
  margin: 0 auto;
  background: rgba(22, 19, 15, 0.96);
  backdrop-filter: blur(12px);
  color: #e8e1d3;
  border: 1px solid rgba(250, 246, 238, 0.14);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 13.5px;
  line-height: 1.6;
}

.cookie-text strong {
  color: #faf6ee;
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 4px;
}

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

.cookie-btn {
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-accept:hover {
  background: var(--accent-deep);
}

.cookie-decline {
  background: transparent;
  color: #cfc8ba;
  border-color: rgba(250, 246, 238, 0.3);
}

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

.site-footer {
  background: var(--night);
  color: #b3aa97;
  font-size: 14px;
}

.footer-status {
  border-bottom: 1px solid rgba(250, 246, 238, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 64px 0;
}

.footer-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #faf6ee;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: #b3aa97;
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
}

.footer-links a:hover {
  color: #e5b1b8;
  padding-left: 5px;
}

.footer-contact div {
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact i {
  color: #e5b1b8;
  width: 20px;
}

.footer-contact a {
  color: #e8e1d3;
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 177, 184, 0.3);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8e1d3;
  transition: all 0.25s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  padding: 24px 0;
  font-size: 12.5px;
  color: #857d6c;
}

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

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: #e5b1b8;
  font-weight: 800;
  font-size: 13px;
}

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

.footer-blurb {
  line-height: 1.8;
}

.reg-line {
  font-size: 12px;
  color: #857d6c;
  line-height: 1.7;
}

.tabs-nav {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 13px 24px;
  border: 0;
  background: transparent;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.25s;
}

.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

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

.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--accent);
}

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

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

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

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

.sec-dark .list-check li,
.bg-media .list-check li {
  color: #d8d1c2;
}

.sec-dark .list-check i,
.bg-media .list-check i {
  color: #e5b1b8;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.25s;
}

.link-arrow:hover {
  gap: 14px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  background: #fff;
}

.big-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.35;
  font-weight: 500;
  font-style: italic;
}

.poster-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.poster-frame .play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-badge .pb-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(139, 30, 45, 0.9);
  color: #fff;
  border: 0;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    background 0.3s;
  box-shadow: 0 0 0 12px rgba(139, 30, 45, 0.25);
}

.play-badge .pb-btn:hover {
  transform: scale(1.08);
  background: var(--accent-deep);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  height: 420px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}

.gallery-grid .g-item {
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}

.gallery-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-grid .g-item:hover img {
  transform: scale(1.07);
}

.gallery-grid .g-tall {
  grid-row: span 2;
}

.gallery-grid .g-wide {
  grid-column: span 2;
}

.cipher-input {
  letter-spacing: 0.5em;
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
}

.cipher-result {
  display: none;
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.cipher-result.show {
  display: block;
}

.cipher-result.ok {
  background: rgba(139, 30, 45, 0.12);
  border: 1px solid rgba(229, 177, 184, 0.35);
  color: #f0dde0;
}

.article-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 40px 0 16px;
}

.article-body h3 {
  font-size: 22px;
  margin: 30px 0 12px;
}

.article-body p {
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 16px;
}

.article-body ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.article-body a {
  color: var(--accent);
  font-weight: 600;
}

.article-meta {
  display: flex;
  gap: 22px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
}

.article-meta i {
  color: var(--accent);
  margin-right: 6px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

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

.blog-card .bc-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card .bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

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

.tier-card {
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.tier-card.featured {
  border-color: var(--accent);
  box-shadow: 0 24px 60px -24px rgba(139, 30, 45, 0.4);
}

.tier-card:hover {
  transform: translateY(-6px);
}

.strength-bar {
  height: 5px;
  border-radius: 4px;
  background: var(--paper-2);
  overflow: hidden;
}

.strength-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--platinum), var(--accent));
  border-radius: 4px;
}

.page-title {
  font-size: clamp(38px, 6vw, 72px);
}

.t-muted {
  color: var(--muted) !important;
}
.t-soft {
  color: var(--ink-soft) !important;
}
.t-accent {
  color: var(--accent) !important;
}
.t-cream {
  color: #faf6ee !important;
}
.t-cream-2 {
  color: #cfc8ba !important;
}
.t-cream-3 {
  color: #b3aa97 !important;
}
.t-rose {
  color: #e5b1b8 !important;
}

.card-media {
  background-size: cover;
  background-position: center;
}

.card-media-dark {
  background-size: cover;
  background-position: center;
  color: #f4efe6;
}

.card-media-dark h3,
.card-media-dark h4 {
  color: #faf6ee;
}

.divider-dark {
  border-bottom: 1px solid rgba(250, 246, 238, 0.12);
}

.divider-light {
  border-bottom: 1px solid var(--line);
}

.eyebrow-center {
  justify-content: center;
}

.wheel-note {
  display: block;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  background: var(--accent-soft);
  border: 1px solid rgba(139, 30, 45, 0.2);
  color: var(--accent-deep);
}

.cta-band {
  background: var(--night);
  color: #f4efe6;
}

.cta-band .lead {
  color: #cfc8ba;
}

.grid-flush {
  align-items: stretch;
  gap: 0;
}

.img-full {
  height: 100%;
}

.lh-18 {
  line-height: 1.8;
}

.stat-cap {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .sec {
    padding: 68px 0;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .status-bar {
    flex-wrap: wrap;
  }
  .status-item {
    flex: 1 1 45%;
    border-bottom: 1px solid rgba(250, 246, 238, 0.14);
  }
  .hero-nav {
    display: none;
  }
  .site-topbar .shell {
    justify-content: flex-start;
    gap: 26px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .site-topbar .shell::-webkit-scrollbar {
    display: none;
  }
  .topbar-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

@media (max-width: 600px) {
  .shell {
    padding: 0 18px;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .hero-slider {
    min-height: 78vh;
  }
  .count-cell {
    min-width: 64px;
    padding: 13px 8px;
  }
  .count-cell .num {
    font-size: 26px;
  }
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
  .header-cta .btn {
    display: none;
  }
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
}
