:root {
  --ivory: #faf8f5;
  --paper: #ffffff;
  --ink: #0e1217;
  --ink-soft: #2a3138;
  --mute: #66707c;
  --line: #e6e1da;
  --wine: #7f1d2d;
  --wine-deep: #5c1420;
  --wine-soft: #f6ecec;
  --steel: #334155;
  --mist: #eef1f4;
  --shadow-sm: 0 2px 10px rgba(14, 18, 23, 0.06);
  --shadow-md: 0 12px 34px rgba(14, 18, 23, 0.1);
  --shadow-lg: 0 30px 70px rgba(14, 18, 23, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

body h1,
body h2,
body h3,
body h4,
.font-display {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

body h1 {
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
}
body h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
}
body h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}
body h4 {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

p {
  color: var(--ink-soft);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

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

.shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}

.section-tight {
  padding: clamp(44px, 6vw, 80px) 0;
}

.bg-paper {
  background: var(--paper);
}
.bg-mist {
  background: var(--mist);
}
.bg-wine-soft {
  background: var(--wine-soft);
}
.bg-ink {
  background: var(--ink);
  color: #f3f0eb;
}
.bg-ink p,
.bg-ink li {
  color: rgba(243, 240, 235, 0.72);
}

.bg-photo {
  background-size: cover;
  background-position: center;
  color: #f6f3ee;
}
.bg-photo p,
.bg-photo li {
  color: rgba(246, 243, 238, 0.82);
}
.bg-photo .eyebrow {
  color: rgba(246, 243, 238, 0.85);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.sec-title {
  margin: 0 0 18px;
}
.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--mute);
  max-width: 640px;
}
.bg-ink .lead,
.bg-photo .lead {
  color: rgba(246, 243, 238, 0.75);
}

.sec-head {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 60px);
}
.sec-head.center {
  margin-inline: auto;
  text-align: center;
}
.sec-head.center .eyebrow {
  justify-content: center;
}
.sec-head.center .lead {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn i {
  font-size: 0.8em;
}

.btn-primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 12px 28px rgba(127, 29, 45, 0.28);
}
.btn-primary:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(127, 29, 45, 0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}
.btn-light:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.76rem;
}
.btn-block {
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--wine);
  letter-spacing: 0.04em;
}
.link-arrow i {
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover i {
  transform: translateX(6px);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 30px);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card p {
  color: var(--mute);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(127, 29, 45, 0.25);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--wine-soft);
  color: var(--wine);
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.card h3 {
  margin: 0 0 10px;
}
.card p {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.card-media {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 240px;
  background-size: cover;
  background-position: center;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.chip i {
  color: var(--wine);
}
.bg-ink .chip,
.bg-photo .chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #f3f0eb;
}

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

.num-badge {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(127, 29, 45, 0.22);
  font-weight: 700;
}

.divider-line {
  height: 1px;
  background: var(--line);
  border: none;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.list-check li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.list-check li i {
  color: var(--wine);
  margin-top: 4px;
  font-size: 0.85rem;
}
.bg-ink .list-check li,
.bg-photo .list-check li {
  color: rgba(243, 240, 235, 0.78);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.split.reverse > .split-media {
  order: -1;
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-box {
  text-align: center;
  padding: 26px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  color: var(--wine);
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 8px;
  display: block;
}
.bg-ink .stat-box,
.bg-photo .stat-box {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.bg-ink .stat-label,
.bg-photo .stat-label {
  color: rgba(243, 240, 235, 0.6);
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee-item i {
  color: var(--wine);
  font-size: 0.85rem;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.hero-slider {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.1s var(--ease),
    visibility 1.1s;
  padding: 140px 0 120px;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
  color: #f6f3ee;
}
.hero-slide h1 {
  color: #fff;
  max-width: 14ch;
  margin: 0 0 20px;
}
.hero-slide p {
  max-width: 540px;
  color: rgba(246, 243, 238, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  margin-bottom: 32px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 243, 238, 0.9);
  margin-bottom: 22px;
}
.hero-kicker i {
  color: #e8b4bc;
}

.hero-nav {
  position: absolute;
  z-index: 5;
  bottom: 42px;
  left: 0;
  right: 0;
}
.hero-nav-inner {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hero-dots {
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 34px;
  height: 3px;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.4s;
  padding: 0;
  border-radius: 2px;
}
.hero-dot.active {
  background: #fff;
}
.hero-arrows {
  display: flex;
  gap: 10px;
}
.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: all 0.3s var(--ease);
}
.hero-arrow:hover {
  background: #fff;
  color: var(--ink);
}
.hero-counter {
  font-family: "Playfair Display", serif;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}

.wheel-wrap {
  position: relative;
  width: min(440px, 88vw);
  aspect-ratio: 1;
  margin-inline: auto;
}
.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid var(--ink);
  background: conic-gradient(
    var(--wine) 0deg 20deg,
    var(--ink) 20deg 40deg,
    var(--wine-deep) 40deg 60deg,
    var(--ink) 60deg 80deg,
    var(--wine) 80deg 100deg,
    var(--ink) 100deg 120deg,
    var(--wine-deep) 120deg 140deg,
    var(--ink) 140deg 160deg,
    var(--wine) 160deg 180deg,
    var(--ink) 180deg 200deg,
    var(--wine-deep) 200deg 220deg,
    var(--ink) 220deg 240deg,
    var(--wine) 240deg 260deg,
    var(--ink) 260deg 280deg,
    var(--wine-deep) 280deg 300deg,
    var(--ink) 300deg 320deg,
    var(--wine) 320deg 340deg,
    var(--ink) 340deg 360deg
  );
  box-shadow:
    var(--shadow-lg),
    inset 0 0 0 6px rgba(255, 255, 255, 0.08);
  transition: transform 4s cubic-bezier(0.15, 0.9, 0.2, 1);
}
.wheel-hub {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 34%;
  height: 34%;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  padding: 18px;
}
.wheel-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid var(--wine);
  z-index: 3;
}

.step-line {
  counter-reset: step;
  display: grid;
  gap: 0;
}
.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.step-item:last-child {
  border-bottom: none;
}
.step-num {
  counter-increment: step;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--wine);
  color: var(--wine);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.step-num::before {
  content: counter(step, decimal-leading-zero);
}
.step-item h3 {
  margin: 4px 0 8px;
  font-size: 1.25rem;
}
.step-item p {
  margin: 0;
  font-size: 0.94rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.tab-btn {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
  animation: fadeUp 0.5s var(--ease);
}

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

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.faq-item.open {
  border-color: rgba(127, 29, 45, 0.35);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-question .faq-chevron {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--wine);
  flex-shrink: 0;
  transition: all 0.35s var(--ease);
  font-size: 0.7rem;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-answer-inner {
  padding: 0 26px 22px;
  color: var(--mute);
  font-size: 0.95rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.price-table th {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}
.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}
.price-table tr:hover td {
  background: var(--wine-soft);
}
.price-value {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--wine);
}

.tier-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.tier-card.featured {
  border-color: var(--wine);
  box-shadow: 0 20px 50px rgba(127, 29, 45, 0.16);
}
.tier-price {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  margin: 14px 0 4px;
}
.tier-price span {
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  color: var(--mute);
  font-weight: 500;
}
.tier-card .list-check {
  margin: 20px 0 26px;
  text-align: left;
  flex-grow: 1;
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 46px);
  box-shadow: var(--shadow-md);
}
.form-steps-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}
.form-step-dot {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.form-step-dot.done {
  background: var(--wine);
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: fadeUp 0.45s var(--ease);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--ivory);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(127, 29, 45, 0.1);
  background: #fff;
}
.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: #b3261e;
  box-shadow: 0 0 0 4px rgba(179, 38, 30, 0.08);
}
.field-error {
  font-size: 0.78rem;
  color: #b3261e;
  display: none;
}
.field-error.visible {
  display: block;
}
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}
.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--mute);
}
.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--wine);
  flex-shrink: 0;
}
.form-consent a {
  color: var(--wine);
  text-decoration: underline;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn.loading .spinner {
  display: inline-block;
}
.btn.loading .btn-label {
  opacity: 0.6;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100000;
  display: grid;
  gap: 10px;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #f3f0eb;
  padding: 15px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  max-width: 340px;
  animation: toastIn 0.4s var(--ease);
  border-left: 3px solid var(--wine);
}
.toast i {
  color: #e8b4bc;
}
.toast.hide {
  animation: toastOut 0.4s var(--ease) forwards;
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateY(14px);
  }
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99999;
  width: min(430px, calc(100% - 40px));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: none;
}
.cookie-banner.show {
  display: block;
  animation: toastIn 0.5s var(--ease);
}
.cookie-banner h4 {
  font-family: "Playfair Display", serif;
  margin: 0 0 8px;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-banner h4 i {
  color: var(--wine);
}
.cookie-banner p {
  margin: 0 0 18px;
  font-size: 0.85rem;
  color: var(--mute);
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-actions .btn {
  flex: 1;
  padding: 11px 16px;
  font-size: 0.74rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.4s var(--ease);
}
.topbar {
  background: var(--ink);
  color: rgba(243, 240, 235, 0.85);
  font-size: 0.78rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
}
.topbar-contacts,
.topbar-meta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.topbar-item i {
  color: #e8b4bc;
  font-size: 0.72rem;
}
.topbar-address:hover {
  color: #fff;
}
.topbar-social {
  display: flex;
  gap: 4px;
}
.topbar-social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(243, 240, 235, 0.75);
  font-size: 0.75rem;
  transition: all 0.3s;
}
.topbar-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mainbar {
  background: rgba(250, 248, 245, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.4s;
}
.site-header.scrolled .mainbar {
  box-shadow: 0 10px 30px rgba(14, 18, 23, 0.08);
}
.mainbar-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand-name em {
  font-style: normal;
  color: var(--wine);
}
.mainnav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 9px 13px;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  border-radius: 8px;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 1.5px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover {
  color: var(--wine);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.mainbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.burger {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.05rem;
  cursor: pointer;
  display: none;
  place-items: center;
  transition: all 0.3s;
}
.burger:hover {
  border-color: var(--wine);
  color: var(--wine);
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 100%);
  z-index: 1002;
  background: var(--ink);
  color: #f3f0eb;
  padding: 26px 30px 36px;
  transform: translateX(102%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: none;
}
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}
.mobile-menu .brand-name {
  color: #f3f0eb;
}
.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: none;
  color: #f3f0eb;
  font-size: 1.1rem;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
}
.mobile-link {
  padding: 13px 0;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #f3f0eb;
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.mobile-link:hover {
  color: #e8b4bc;
  padding-left: 10px;
}
.mobile-contacts {
  margin-top: auto;
  padding-top: 34px;
  display: grid;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(243, 240, 235, 0.8);
}
.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-contact-item i {
  color: #e8b4bc;
  width: 18px;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 23, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.site-footer {
  background: var(--ink);
  color: rgba(243, 240, 235, 0.8);
  padding: clamp(56px, 7vw, 90px) 0 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr 1.1fr;
  gap: clamp(30px, 4vw, 54px);
  padding-bottom: 46px;
}
.footer-brand {
  margin-bottom: 18px;
}
.footer-brand .brand-name {
  color: #f3f0eb;
}
.footer-desc {
  font-size: 0.92rem;
  color: rgba(243, 240, 235, 0.6);
  margin: 0 0 22px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: rgba(243, 240, 235, 0.8);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
  transform: translateY(-3px);
}
.footer-title {
  font-family: "Playfair Display", serif;
  color: #f3f0eb;
  font-size: 1.05rem;
  margin: 0 0 18px;
}
.footer-title-sub {
  margin-top: 26px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
}
.footer-list a {
  color: rgba(243, 240, 235, 0.65);
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.footer-list a:hover {
  color: #e8b4bc;
  padding-left: 6px;
}
.footer-contacts li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  line-height: 1.5;
}
.footer-contacts i {
  color: #e8b4bc;
  margin-top: 4px;
  font-size: 0.8rem;
  width: 16px;
  flex-shrink: 0;
}
.footer-contacts a {
  color: rgba(243, 240, 235, 0.75);
}
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}
.footer-legal-line {
  font-size: 0.78rem;
  color: rgba(243, 240, 235, 0.45);
  margin: 0 0 6px;
}
.social-round {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: #f3f0eb;
  font-size: 1.2rem;
  transition: all 0.3s var(--ease);
}
.social-round:hover {
  background: var(--wine);
  border-color: var(--wine);
  transform: translateY(-3px);
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(243, 240, 235, 0.5);
}
.footer-bottom p {
  margin: 0;
  color: rgba(243, 240, 235, 0.5);
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  z-index: 2;
}
.float-card .num-badge {
  font-size: 1.7rem;
  color: var(--wine);
}

.frame-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.frame-photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.quote-block {
  border-left: 3px solid var(--wine);
  padding: 8px 0 8px 26px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--ink);
}
.quote-block footer {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--mute);
  margin-top: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card {
  display: flex;
  flex-direction: column;
}
.post-card .card-media {
  aspect-ratio: 16/10;
  margin-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}
.post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-meta {
  display: flex;
  gap: 14px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}
.post-meta i {
  color: var(--wine);
  margin-right: 5px;
}
.post-body h3 {
  margin: 0 0 10px;
}
.post-body p {
  font-size: 0.92rem;
  margin: 0 0 18px;
  flex: 1;
}

.pill-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: var(--paper);
  gap: 4px;
}
.pill-switch button {
  border: none;
  background: none;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--mute);
  transition: all 0.3s;
}
.pill-switch button.active {
  background: var(--wine);
  color: #fff;
}

.countdown {
  display: flex;
  gap: 14px;
}
.countdown-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 14px 10px;
  min-width: 76px;
}
.countdown-box .cd-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.countdown-box .cd-label {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 6px;
  display: block;
}
.countdown.light .countdown-box {
  background: var(--paper);
  border-color: var(--line);
}
.countdown.light .cd-num {
  color: var(--wine);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 420px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.slot-card {
  border-radius: var(--radius);
  padding: 22px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.slot-card h3 {
  margin: 0 0 6px;
  color: #fff;
}
.slot-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-md);
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover {
  background: var(--wine);
}

.article-body h2 {
  margin: 44px 0 16px;
}
.article-body h3 {
  margin: 32px 0 12px;
}
.article-body p {
  margin: 0 0 18px;
}
.article-body ul {
  margin: 0 0 18px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}
.article-body blockquote {
  margin: 30px 0;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.toc-list a {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 10px;
  transition: all 0.25s;
}
.toc-list a:hover {
  background: var(--wine-soft);
  color: var(--wine);
}
.toc-list a i {
  font-size: 0.65rem;
  color: var(--wine);
}

@media (max-width: 1100px) {
  .mainnav {
    display: none;
  }
  .burger {
    display: grid;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split.reverse > .split-media {
    order: 0;
  }
  .split-media {
    min-height: 320px;
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .topbar {
    display: none;
  }
  .hero-slide {
    padding: 110px 0 110px;
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .header-cta {
    display: none;
  }
  .hero-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .countdown {
    flex-wrap: wrap;
  }
  .countdown-box {
    flex: 1;
    min-width: 64px;
  }
  .cookie-banner {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
  .toast-stack {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .toast {
    max-width: none;
  }
  .price-table th:nth-child(3),
  .price-table td:nth-child(3) {
    display: none;
  }
  html { overflow-x:hidden }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
