:root {
  --pine: #4E5242;
  --rose: #F4D4DE;
  --berry: #C41E56;
  --mist: #EEEDE8;
  --sage: #D8DCC8;
  --moss: #8F9A72;
  --ink: #1A1B18;
  --muted: #6B6E65;
  --paper: #F6F5F1;
  --white: #FFFFFF;
  --surface: #FFFFFF;
  --surface-muted: #EEEDE8;
  --field: #FFFFFF;
  --field-border: rgba(26, 27, 24, .14);
  --field-border-focus: rgba(78, 82, 66, .5);
  --line: rgba(26, 27, 24, .08);
  --ok: #2D6B47;
  --warn: #8F5A18;
  --bad: #9E1A3A;
  --radius: 2px;
  --radius-soft: 6px;
  --max: 1200px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; min-width: 0; }

html {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { margin: 0; min-width: 320px; }

body.menu-open { overflow: hidden; }

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; }

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(246, 245, 241, .92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background: var(--pine);
  color: var(--rose);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 32px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a {
  transition: color .2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--berry);
}

.top-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 20px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.btn:hover,
.top-action:hover {
  background: var(--pine);
}

.btn.secondary {
  background: var(--pine);
  color: var(--white);
}

.btn.secondary:hover {
  background: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  padding-inline: 0;
}

.btn.ghost:hover {
  color: var(--berry);
  background: transparent;
}

.btn.soft {
  background: var(--surface-muted);
  color: var(--ink);
}

.btn.soft:hover {
  background: var(--sage);
}

.btn.full { width: 100%; }

.btn.accent {
  background: var(--berry);
}

.btn.accent:hover {
  background: #A31848;
}

.booking-box [data-total] {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.booking-box .line-list .line-item:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  min-height: calc(100vh - 120px);
  padding-top: 12px;
}

.hero-copy {
  align-self: center;
  display: grid;
  gap: 20px;
}

.hero-copy h1,
.hero-copy .lead {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--berry);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7.5vw, 92px);
  line-height: .94;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.6;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(26, 27, 24, .04), rgba(26, 27, 24, .48)),
    url("/images/hero-scene.svg") center/cover;
  border-radius: var(--radius-soft);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
}

.hero-media-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  gap: 10px;
  background: rgba(26, 27, 24, .62);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(8px);
}

.search-panel {
  margin-top: 8px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius-soft);
}

.search-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.search-grid .search-field-region {
  grid-column: 1 / -1;
}

.search-grid .search-field-submit {
  grid-column: 1 / -1;
}

.search-grid .search-field-submit .btn {
  width: 100%;
}

@media (min-width: 1080px) {
  .search-grid--bar {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)) auto;
    align-items: end;
  }

  .search-grid--bar .search-field-region,
  .search-grid--bar .search-field-submit {
    grid-column: auto;
  }

  .search-grid--bar .search-field-submit .btn {
    width: auto;
    white-space: nowrap;
  }
}

.field { display: grid; gap: 10px; min-width: 0; }

.form-stack,
.booking-box form,
.search-panel,
.filters form,
.panel > form,
form.panel,
.panel.form-stack {
  display: grid;
  gap: 16px;
}

.form-divider,
.block-gap {
  margin-top: 28px;
}

.place-page > section.block-gap {
  margin-top: clamp(40px, 5vw, 56px);
}

.place-page > section.block-gap:first-of-type {
  margin-top: 28px;
}

.form-divider {
  margin-bottom: 4px;
}

.block-gap:first-child,
.form-divider:first-child {
  margin-top: 0;
}

.field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 0;
  border-radius: var(--radius);
  background: var(--field);
  box-shadow: inset 0 0 0 1px var(--field-border);
  outline: none;
  transition: background .2s ease, box-shadow .2s ease;
}

textarea { min-height: 112px; resize: vertical; }

.input:focus,
select:focus,
textarea:focus {
  background: var(--field);
  box-shadow: inset 0 0 0 1px var(--field-border-focus);
}

.input::placeholder,
textarea::placeholder {
  color: rgba(107, 110, 101, .72);
}

.input:disabled,
select:disabled,
textarea:disabled {
  background: var(--paper);
  opacity: .72;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 0;
}

.metric {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 108px;
  padding: 20px;
  background: var(--surface-muted);
  border-radius: var(--radius-soft);
}

.metric b {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  margin-top: clamp(40px, 5vw, 56px);
}

.section:first-child {
  margin-top: 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
}

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

.grid.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card-body {
  display: grid;
  gap: 12px;
  padding: 18px 2px 0;
}

.card h3 {
  margin-bottom: 0;
}

.card h3 a:hover {
  color: var(--berry);
}

.auth-page {
  max-width: 520px;
  margin-inline: auto;
  display: grid;
  gap: 24px;
}

.auth-page h1 {
  margin-bottom: 0;
}

.auth-page .lead {
  margin-bottom: 0;
}

.form-inline {
  display: inline;
}

.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 12px;
  max-width: 420px;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-mark b {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.step,
.wizard-step {
  display: grid;
  gap: 10px;
}

.step p,
.wizard-step p {
  margin: 0;
}

.map-band {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  border-radius: var(--radius-soft);
  overflow: hidden;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: 360px;
  padding: 16px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-soft);
  font-size: 14px;
  animation: toast-in .25s ease;
}

.demo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 20px;
  background: var(--rose);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.demo-banner p {
  margin: 0;
}

.demo-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  background: transparent;
  border-radius: var(--radius-soft);
  overflow: hidden;
}

.card-body .tag-row {
  margin: 0;
}

.photo {
  aspect-ratio: 4 / 3;
  background: var(--sage) center/cover;
  border-radius: var(--radius-soft);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 99px;
  background: var(--surface-muted);
  color: var(--pine);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag.hot { background: var(--rose); color: var(--berry); }
.tag.ok { background: #E4F0E8; color: var(--ok); }
.tag.warn { background: #F5EBD8; color: var(--warn); }

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.icon-action {
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--pine);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.icon-action.active {
  background: var(--rose);
  color: var(--berry);
}

.price b {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
}

.muted { color: var(--muted); }
.small { font-size: 13px; }

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

.muted a:hover {
  color: var(--berry);
}

.filter-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
}

.filters {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 20px;
  background: var(--surface-muted);
  border-radius: var(--radius-soft);
}

.check-list { display: grid; gap: 10px; }

.check {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.check input { width: 16px; height: 16px; accent-color: var(--berry); }

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.segmented {
  display: inline-grid;
  grid-auto-flow: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-muted);
}

.segmented button,
.segmented a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.segmented button.active,
.segmented a.active {
  background: var(--ink);
  color: var(--white);
}

.stay-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 10px;
  margin-bottom: 24px;
}

.gallery .photo { min-height: 240px; aspect-ratio: auto; }

.summary-box,
.booking-box,
.panel {
  background: var(--surface-muted);
  border-radius: var(--radius-soft);
  padding: 22px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.booking-box {
  position: sticky;
  top: 92px;
  align-self: start;
}

.line-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.line-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 0;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.day {
  min-width: 0;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.day.busy {
  background: var(--rose);
  color: var(--bad);
}

.day.free {
  background: #E8F0E2;
  color: var(--ok);
}

.review {
  display: grid;
  gap: 8px;
  padding: 18px 0;
}

.review + .review {
  border-top: 1px solid var(--line);
}

.stars { color: var(--berry); font-weight: 700; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step {
  min-height: 150px;
  padding: 20px;
  background: var(--surface-muted);
  border-radius: var(--radius-soft);
}

.dash {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
}

.side-nav {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-soft);
}

.side-nav a,
.side-nav button {
  min-height: 42px;
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
}

.side-nav a.active,
.side-nav button.active {
  background: rgba(255, 255, 255, .1);
}

.table-wrap {
  overflow: auto;
  border-radius: var(--radius-soft);
  background: var(--surface-muted);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: transparent;
}

th, td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

tr:last-child td { border-bottom: 0; }

.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--surface);
  color: var(--pine);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status.ok { background: #E4F0E8; color: var(--ok); }
.status.warn { background: #F5EBD8; color: var(--warn); }
.status.bad { background: var(--rose); color: var(--bad); }

.chat-box {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.message {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: var(--radius-soft);
  background: var(--surface-muted);
}

.message.outgoing {
  justify-self: end;
  background: var(--ink);
  color: var(--white);
}

.message-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.kanban {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.kanban-col {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 320px;
  padding: 16px;
  background: var(--surface-muted);
  border-radius: var(--radius-soft);
}

.task-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: var(--surface);
  border-radius: var(--radius);
}

.pricing-heatmap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.heat-cell {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 16px;
  border-radius: var(--radius-soft);
  background:
    linear-gradient(0deg, rgba(196, 30, 86, calc(var(--heat) / 180)), rgba(196, 30, 86, calc(var(--heat) / 180))),
    var(--surface-muted);
}

.heat-cell strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.resource-board { display: grid; gap: 10px; }

.resource-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, .8fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: var(--surface-muted);
  border-radius: var(--radius-soft);
}

.host-schedule-table {
  max-height: 60vh;
  overflow: auto;
}

.host-schedule-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--surface);
}

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

.onboarding-steps li {
  padding: 16px 18px;
  background: var(--surface-muted);
  border-radius: var(--radius-soft);
}

.danger-zone {
  border: 1px solid var(--rose);
}

.preset-row {
  flex-wrap: wrap;
  gap: 8px;
}

.empty-state {
  text-align: center;
  padding: 28px 20px;
}

.empty-icon {
  margin: 0 0 8px;
  opacity: .7;
}

.extra-slot-hint {
  margin: 0 0 8px;
}

.booking-extras-hint {
  margin: 0 0 12px;
}

.check-list .check .tag {
  margin-left: 6px;
  vertical-align: middle;
}

.meter {
  height: 6px;
  border-radius: 99px;
  background: var(--surface);
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--berry);
}

.wizard {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.wizard-step {
  min-height: 150px;
  padding: 16px;
  border-radius: var(--radius-soft);
  background: var(--surface-muted);
}

.wizard-step b {
  display: block;
  margin-bottom: 8px;
  color: var(--pine);
}

a.panel {
  display: block;
  color: inherit;
  transition: background .2s ease;
}

a.panel:hover {
  background: var(--mist);
}

.map-canvas {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(78, 82, 66, .05) 1px, transparent 1px),
    linear-gradient(rgba(78, 82, 66, .05) 1px, transparent 1px),
    var(--surface-muted);
  background-size: 42px 42px;
  border-radius: var(--radius-soft);
}

.pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--berry);
  transform: translate(-50%, -50%);
}

.pin::after {
  content: attr(data-label);
  position: absolute;
  left: 18px;
  top: -8px;
  min-width: 110px;
  color: var(--pine);
  font-weight: 600;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  border: 0;
  padding: 0;
  background: rgba(26, 27, 24, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 72px;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: min(320px, 88vw);
  padding: 20px;
  background: var(--paper);
  border-left: 1px solid var(--line);
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .25s ease, visibility .25s ease;
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a,
.mobile-nav .mobile-nav-cta {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
}

.mobile-nav form {
  margin-top: 8px;
}

.mobile-nav a[aria-current="page"] {
  color: var(--berry);
}

.mobile-nav-cta {
  margin-top: 16px;
  border-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 48px clamp(20px, 4vw, 48px);
  background: var(--surface-muted);
  color: var(--pine);
}

.footer b {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.footer p {
  margin-bottom: 0;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px 24px;
  font-size: 14px;
}

.footer-grid a {
  color: var(--muted);
  transition: color .2s ease;
}

.footer-grid a:hover { color: var(--ink); }

.empty {
  padding: 28px;
  background: var(--surface-muted);
  border-radius: var(--radius-soft);
  color: var(--muted);
}

.bad { color: var(--bad); }

/* Property page: OTA gallery */
.property-gallery {
  position: relative;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr;
  gap: 8px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  height: 400px;
  align-items: stretch;
}

.gallery-carousel {
  display: none;
  position: relative;
  border-radius: var(--radius-soft);
  overflow: hidden;
}

.gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: var(--surface-muted);
  aspect-ratio: 4 / 3;
  min-height: 280px;
  overflow: hidden;
}

.gallery-slide .photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.gallery-carousel-counter {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(18, 20, 16, .72);
  color: #fff;
  pointer-events: none;
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  max-width: calc(100% - 24px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 20, 16, .55);
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-dots::-webkit-scrollbar { display: none; }

.gallery-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.gallery-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

.gallery-hero,
.gallery-thumb {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: var(--surface-muted);
  overflow: hidden;
  min-height: 0;
}

.gallery-thumb-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(18, 20, 16, .52);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  pointer-events: none;
}

.gallery-hero {
  height: 100%;
  min-height: 0;
}

.gallery-hero .photo,
.gallery-thumb .photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  background-size: cover;
  background-position: center;
  transition: transform .3s ease;
}

.gallery-hero:hover .photo,
.gallery-thumb:hover .photo {
  transform: scale(1.03);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 100%;
  min-height: 0;
}

.gallery-thumb {
  height: 100%;
  min-height: 0;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(18, 20, 16, .92);
  display: grid;
  place-items: center;
  padding: 48px 72px;
}

.gallery-lightbox[hidden] { display: none !important; }

.gallery-stage {
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 120px);
  border-radius: var(--radius-soft);
  object-fit: contain;
  touch-action: pan-y;
}

.gallery-close,
.gallery-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.gallery-close { top: 20px; right: 20px; }
.gallery-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.gallery-next { right: 20px; top: 50%; transform: translateY(-50%); }

.gallery-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .8);
  margin: 0;
  font-size: 14px;
}

body.gallery-open { overflow: hidden; }

/* Unit picker */
.unit-picker-grid { align-items: stretch; }

.unit-picker-card {
  border: 2px solid transparent;
  border-radius: var(--radius-soft);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.unit-picker-card.is-selected {
  border-color: var(--berry);
  box-shadow: 0 0 0 1px var(--berry);
}

.unit-picker-link {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.unit-picker-link .photo {
  min-height: 180px;
  border-radius: var(--radius-soft) var(--radius-soft) 0 0;
}

.unit-picker-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.unit-picker-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: auto;
}

/* Book strip */
.place-page { padding-bottom: 120px; }

.book-strip {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .06);
}

.book-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.book-strip-price {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Book page layout */
.book-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
}

.book-summary { position: sticky; top: 96px; }

.service-card h4 { margin-bottom: 4px; }

.extra-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.extra-option {
  padding: 14px 16px;
  border-radius: var(--radius-soft);
  background: var(--surface-muted);
}

.extra-option-head {
  align-items: flex-start;
}

.extra-option-copy {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.extra-option-thumb {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: var(--line);
}

.extra-option-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.field.compact span {
  font-size: 13px;
}

.services-group h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

@media (max-width: 980px) {
  .gallery-mosaic { display: none; }
  .gallery-carousel { display: block; }
  .book-layout { grid-template-columns: 1fr; }
  .book-summary { position: static; }
  .book-strip-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .book-strip-price {
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .gallery-lightbox { padding: 56px 16px; }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
  .gallery-slide { min-height: 240px; }
  .gallery-slide .photo { min-height: 240px; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }
  .brand {
    justify-self: start;
  }
  .menu-toggle {
    grid-column: 2;
    justify-self: end;
  }
  .top-action { display: none; }
  .hero,
  .stay-layout,
  .filter-layout,
  .dash,
  .map-band {
    grid-template-columns: 1fr;
  }
  .side-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .side-nav a,
  .side-nav button {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }
  .hero { min-height: 0; gap: 32px; }
  .hero-media { min-height: 420px; }
  .grid.cards,
  .grid.three,
  .grid.four,
  .timeline,
  .kanban,
  .wizard,
  .pricing-heatmap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filters,
  .booking-box { position: static; }
}

@media (min-width: 981px) {
  .menu-toggle,
  .mobile-nav,
  .menu-backdrop { display: none !important; }
}

@media (max-width: 640px) {
  .topbar { min-height: 64px; gap: 12px; }
  .mobile-nav { top: 64px; }
  .page { width: min(100% - 28px, var(--max)); padding-top: 20px; }
  h1 { font-size: 44px; }
  h2 { font-size: 32px; }
  .hero-media { min-height: 320px; }
  .search-grid,
  .grid.cards,
  .grid.two,
  .grid.three,
  .grid.four,
  .timeline,
  .kanban,
  .wizard,
  .pricing-heatmap,
  .metrics,
  .gallery {
    grid-template-columns: 1fr;
  }
  .message { max-width: 100%; }
  .message-form { grid-template-columns: 1fr; }
  .resource-row { grid-template-columns: 1fr; }
  .section-head,
  .footer,
  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .segmented { grid-auto-flow: row; }
  .footer-grid { grid-template-columns: 1fr; }
}

.nav-logout { display: inline-flex; margin: 0; }
.nav-logout button { margin: 0; }

.profile-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.profile-menu-guest {
  gap: 10px;
}

.profile-guest-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.profile-guest-cta {
  min-height: 40px;
  padding: 8px 14px;
}

.profile-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 10px 6px 6px;
  border: 1px solid rgba(78, 82, 66, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.profile-trigger-demo,
.profile-avatar-demo {
  border-color: rgba(122, 46, 58, 0.35);
}

.profile-menu-demo .profile-trigger {
  background: rgba(122, 46, 58, 0.08);
}

.profile-menu-demo .profile-name {
  color: var(--berry);
}

.mobile-profile-block-demo {
  border-color: rgba(122, 46, 58, 0.2);
  background: rgba(122, 46, 58, 0.04);
}

.profile-trigger:hover,
.profile-menu.open .profile-trigger {
  border-color: rgba(122, 46, 58, 0.28);
  box-shadow: 0 8px 24px rgba(34, 36, 28, 0.08);
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.profile-name {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
}

.profile-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.profile-menu.open .profile-caret {
  transform: rotate(225deg) translateY(2px);
}

.profile-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 240px;
  padding: 12px;
  border: 1px solid rgba(78, 82, 66, 0.12);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(34, 36, 28, 0.12);
  z-index: 80;
}

.profile-menu.open .profile-panel {
  display: grid;
  gap: 4px;
}

.profile-panel-head {
  display: grid;
  gap: 2px;
  padding: 4px 8px 10px;
  border-bottom: 1px solid rgba(78, 82, 66, 0.1);
  margin-bottom: 4px;
}

.profile-panel-head strong {
  font-size: 14px;
}

.profile-panel-head .muted,
.mobile-profile-head .muted {
  font-size: 12px;
}

.profile-panel a,
.mobile-profile-block a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
}

.profile-panel a:hover,
.mobile-profile-block a:hover,
.profile-panel a[aria-current="page"] {
  background: rgba(122, 46, 58, 0.08);
  color: var(--berry);
}

.profile-logout {
  margin: 6px 0 0;
  padding-top: 8px;
  border-top: 1px solid rgba(78, 82, 66, 0.1);
}

.profile-logout .btn {
  width: 100%;
}

.mobile-profile-block {
  display: grid;
  gap: 4px;
  padding: 12px 0 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(78, 82, 66, 0.12);
}

.mobile-profile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 4px 10px;
}

.mobile-profile-head strong {
  display: block;
  font-size: 15px;
}

@media (max-width: 980px) {
  .profile-name { display: none; }
  .profile-menu-guest .profile-guest-link { display: none; }
}

@media (max-width: 640px) {
  .profile-menu-guest { display: none; }
}

.copy-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 12px;
}
.copy-row .input { flex: 1; }

.partner-ref-card { border-left: 4px solid var(--pine); }
.partner-ref-code {
  display: inline-block;
  margin: 8px 0 12px;
  padding: 10px 16px;
  border-radius: var(--radius-soft);
  background: var(--surface-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pine);
}
.partner-ref-code.inline { font-size: 1.1rem; margin: 4px 0; }

/* Partners landing + income calculator */
.partners-landing { padding-top: 28px; }
.partners-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.75fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.partners-hero-copy { display: grid; gap: 16px; max-width: 40rem; }
.partners-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 600;
}
.partners-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.partners-hero-aside {
  background: var(--pine);
  color: var(--paper);
  border-radius: var(--radius-soft);
  padding: 22px 24px;
  min-height: 160px;
  display: grid;
  align-content: end;
  gap: 6px;
}
.partners-aside-kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}
.partners-aside-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 600;
}
.partners-hero-aside .muted { color: rgba(246, 245, 241, 0.72); margin: 0; }

.partners-program {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners-program-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 22px 20px 22px 0;
  border-right: 1px solid var(--line);
}
.partners-program-item:last-child { border-right: 0; padding-right: 0; }
.partners-program-item:first-child { padding-left: 0; }
.partners-program-mark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--moss);
  line-height: 1.1;
}
.partners-program-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.partners-program-item .muted { margin: 0; }

.partner-calc {
  background: var(--surface-muted);
  border-radius: var(--radius-soft);
  border-left: 4px solid var(--pine);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.partner-calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}
.partner-calc-main { display: grid; gap: 14px; }
.partner-calc-main h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 600;
  line-height: 1.1;
}
.partner-calc-intro { margin: 0; max-width: 34rem; }
.partner-calc-levels {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 6px;
}
.partner-calc-level {
  display: grid;
  gap: 2px;
  min-height: 58px;
  padding: 10px 8px;
  border: 1px solid var(--field-border);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.partner-calc-level:hover {
  border-color: var(--pine);
}
.partner-calc-level.is-active {
  background: var(--pine);
  border-color: var(--pine);
  color: var(--paper);
}
.partner-calc-level-name {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.78;
}
.partner-calc-level-pct {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}
.partner-calc-field {
  display: grid;
  gap: 8px;
  margin: 0;
}
.partner-calc-field > span:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 560;
}
.partner-calc-field strong {
  color: var(--pine);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.partner-calc-level.is-active .partner-calc-level-name,
.partner-calc-level.is-active .partner-calc-level-pct { opacity: 1; color: inherit; }
.partner-calc-hint {
  margin-top: -2px;
  font-size: 0.84rem;
  color: var(--muted);
}
.partner-calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: var(--radius);
  background: var(--sage);
  outline: none;
}
.partner-calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: var(--radius);
  background: var(--pine);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px rgba(78, 82, 66, 0.35);
  cursor: pointer;
  transition: transform .15s ease;
}
.partner-calc-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: var(--radius);
  background: var(--pine);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px rgba(78, 82, 66, 0.35);
  cursor: pointer;
}
.partner-calc-range:active::-webkit-slider-thumb { transform: scale(1.06); }
.partner-calc-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.partner-calc-presets .btn.soft {
  background: var(--paper);
  border: 1px solid var(--field-border);
  padding-inline: 16px;
  min-height: 40px;
}
.partner-calc-presets .btn.soft:hover {
  background: var(--sage);
  border-color: var(--pine);
}

.partner-calc-result {
  position: sticky;
  top: 92px;
  background: var(--pine);
  color: var(--paper);
  border-radius: var(--radius-soft);
  padding: 22px;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 280px;
}
.partner-calc-result-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.partner-calc-result .brand-mark {
  background: var(--rose);
  color: var(--pine);
}
.partner-calc-total-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}
.partner-calc-total {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  line-height: 0.95;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.partner-calc-breakdown {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.partner-calc-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(246, 245, 241, 0.14);
  font-variant-numeric: tabular-nums;
}
.partner-calc-breakdown li span { color: rgba(246, 245, 241, 0.78); }
.partner-calc-breakdown li b { font-weight: 650; }
.partner-calc-meta {
  margin: 4px 0 0;
  font-size: 0.86rem;
  color: rgba(246, 245, 241, 0.7);
}
[data-calc-out].is-tick {
  animation: partner-calc-tick .28s ease;
}
@keyframes partner-calc-tick {
  from { opacity: 0.35; transform: translateY(2px); }
  to { opacity: 1; transform: none; }
}

.partners-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}
.partners-cta h2 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
}
.partners-cta .muted { margin: 0; }

@media (max-width: 900px) {
  .partners-hero,
  .partner-calc-layout,
  .partners-program { grid-template-columns: 1fr; }
  .partners-program-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }
  .partners-program-item:last-child { border-bottom: 0; }
  .partner-calc-levels { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .partner-calc-result { position: static; }
}

@media (max-width: 560px) {
  .partner-calc-levels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.link-list { margin: 12px 0 0; padding-left: 1.2rem; }
.link-list li + li { margin-top: 6px; }

.media-kit-preview {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: var(--paper);
}

.surface-extranet .topbar,
.surface-admin .topbar,
.surface-partners .topbar,
.surface-blog .topbar {
  border-bottom: 1px solid rgba(78, 82, 66, 0.12);
}

.extranet-topbar .nav { gap: 12px; align-items: center; }

.footer-compact .footer-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }

.input.compact { max-width: 110px; display: inline-block; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 6px 12px; border-radius: 999px; background: var(--surface-muted); text-decoration: none; }
.chip.active { background: var(--accent); color: #fff; }

.host-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: var(--muted);
}

.host-breadcrumb a { color: var(--ink); text-decoration: none; }
.host-breadcrumb a:hover { text-decoration: underline; }
.host-breadcrumb-sep { opacity: 0.5; }

.host-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.host-tab {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-muted);
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.host-tab.is-active {
  background: var(--accent);
  color: #fff;
}

.section-help {
  margin: 4px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.property-card-list {
  display: grid;
  gap: 16px;
}

.property-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.property-card-media .photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-soft);
  background-size: cover;
  background-position: center;
}

.property-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 0.9rem;
}

.property-card-body h3 { margin: 0 0 6px; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.media-thumb {
  position: relative;
  margin: 0;
}

.media-thumb .photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-soft);
  background-size: cover;
  background-position: center;
}

.media-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.75rem;
}

.media-delete {
  margin-top: 8px;
}

.media-upload input[type="file"] {
  display: block;
  width: 100%;
}

.media-dropzone {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 20px;
  border: 2px dashed var(--line);
  border-radius: var(--radius-soft);
  background: var(--surface-muted);
  cursor: pointer;
  text-align: center;
}

.media-dropzone input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.media-dropzone-text { color: var(--muted); }

@media (max-width: 720px) {
  .property-card {
    grid-template-columns: 1fr;
  }
}

/* Form wizard */
.form-wizard { display: grid; gap: 20px; }

.form-wizard-progress {
  position: relative;
  display: grid;
  gap: 12px;
}

.form-wizard-progress-bar {
  height: 4px;
  border-radius: 999px;
  background: var(--surface-muted);
  overflow: hidden;
}

.form-wizard-progress-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--wizard-progress, 0%);
  background: var(--accent);
  border-radius: inherit;
  transition: width 0.2s ease;
}

.form-wizard-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-wizard-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-wizard-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--surface-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.form-wizard-step.is-active { color: var(--text); }
.form-wizard-step.is-active .form-wizard-step-num {
  background: var(--accent);
  color: #fff;
}

.form-wizard-step.is-done .form-wizard-step-num {
  background: color-mix(in srgb, var(--accent) 25%, var(--surface-muted));
  color: var(--text);
}

.form-wizard-step-label { line-height: 1.2; }

.form-wizard-counter { margin: 0; font-size: 0.9rem; }

.form-wizard-panel { display: none; }
.form-wizard-panel.is-active { display: block; }

.form-wizard-panel > h2 { margin-top: 0; }

.form-wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.form-wizard-summary {
  display: grid;
  gap: 10px;
}

.form-wizard-summary-row {
  display: grid;
  grid-template-columns: minmax(120px, 34%) 1fr;
  gap: 8px 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.form-wizard-summary-row:last-child { border-bottom: 0; }

.form-wizard-summary-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-wizard-summary-value { margin: 0; word-break: break-word; }

/* Chip select cards */
.chip-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.chip-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.chip-select input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-select span { line-height: 1.3; }

.chip-select:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); }

.chip-select.is-checked {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
}

@media (max-width: 720px) {
  .form-wizard-steps {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-wizard-step-label { display: none; }
  .form-wizard-step.is-active .form-wizard-step-label { display: inline; }

  .form-wizard-actions {
    position: sticky;
    bottom: 0;
    z-index: 2;
    background: var(--surface);
    margin: 0 -16px;
    padding: 12px 16px;
  }

  .form-wizard-summary-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* ——— promo.glamps.ru landing ——— */
.surface-promo {
  background: var(--paper);
  scroll-padding-top: 96px;
}
.surface-promo .promo-section[id],
.surface-promo .promo-strip[id],
.surface-promo .promo-proof[id],
.surface-promo .promo-section-invert[id] {
  scroll-margin-top: 96px;
}
.surface-promo .eyebrow {
  color: var(--moss);
  letter-spacing: 0.14em;
}
.surface-promo .promo-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 0 clamp(20px, 4vw, 48px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .28s ease, border-color .28s ease, backdrop-filter .28s ease;
}
.surface-promo .promo-topbar .brand { color: var(--paper); }
.surface-promo .promo-topbar .brand-mark {
  background: var(--rose);
  color: var(--pine);
}
.surface-promo .promo-topbar .promo-nav { color: rgba(246, 245, 241, 0.78); }
.surface-promo .promo-topbar .promo-nav a:hover { color: var(--rose); }
.surface-promo .promo-topbar .btn.soft {
  background: transparent;
  color: var(--paper);
}
.surface-promo .promo-topbar .btn.soft:hover { color: var(--rose); }
.surface-promo .promo-topbar .btn:not(.soft) {
  background: var(--paper);
  color: var(--ink);
}
.surface-promo .promo-topbar .btn:not(.soft):hover {
  background: var(--rose);
  color: var(--pine);
}
.surface-promo .promo-topbar .menu-toggle {
  background: rgba(246, 245, 241, 0.14);
  color: var(--paper);
}
.surface-promo .promo-topbar.is-solid {
  background: rgba(246, 245, 241, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(78, 82, 66, 0.1);
}
.surface-promo .promo-topbar.is-solid .brand { color: var(--ink); }
.surface-promo .promo-topbar.is-solid .brand-mark {
  background: var(--pine);
  color: var(--rose);
}
.surface-promo .promo-topbar.is-solid .promo-nav { color: var(--muted); }
.surface-promo .promo-topbar.is-solid .promo-nav a:hover { color: var(--berry); }
.surface-promo .promo-topbar.is-solid .btn.soft { color: var(--ink); }
.surface-promo .promo-topbar.is-solid .btn.soft:hover { color: var(--berry); }
.surface-promo .promo-topbar.is-solid .btn:not(.soft) {
  background: var(--ink);
  color: var(--white);
}
.surface-promo .promo-topbar.is-solid .btn:not(.soft):hover { background: var(--pine); }
.surface-promo .promo-topbar.is-solid .menu-toggle {
  background: var(--surface-muted);
  color: var(--ink);
}

.promo-nav {
  display: flex;
  gap: clamp(18px, 2.6vw, 32px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.promo-top-actions { display: flex; gap: 10px; align-items: center; }
.promo { overflow-x: clip; }

.promo-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: calc(76px + clamp(36px, 7vh, 88px)) clamp(20px, 5vw, 56px) clamp(56px, 8vh, 88px);
  color: var(--paper);
}
.promo-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 27, 24, 0.72) 0%, rgba(26, 27, 24, 0.35) 42%, rgba(78, 82, 66, 0.2) 100%),
    url("/images/hero-scene.svg") center/cover;
  transform: scale(1.03);
  animation: promo-hero-drift 22s ease-in-out infinite alternate;
}
.promo-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 27, 24, 0.55) 0%, rgba(26, 27, 24, 0.18) 55%, transparent 78%),
    linear-gradient(180deg, rgba(26, 27, 24, 0.28) 0%, transparent 28%, rgba(26, 27, 24, 0.78) 100%);
}
.promo-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  display: grid;
  gap: 20px;
}
.promo-hero .eyebrow {
  color: var(--rose);
  margin: 0;
}
.promo-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 13vw, 8rem);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-shadow: 0 12px 40px rgba(26, 27, 24, 0.28);
}
.promo-hero-lead {
  margin: 0;
  max-width: 32rem;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.6;
  color: rgba(246, 245, 241, 0.9);
  font-weight: 450;
}
.promo-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.promo-hero-proof {
  margin: 4px 0 0;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: rgba(246, 245, 241, 0.68);
}
.promo-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--pine);
  color: var(--paper);
  border-bottom: 1px solid rgba(246, 245, 241, 0.12);
}
.promo-proof-item {
  padding: clamp(22px, 3vw, 30px) clamp(18px, 2.4vw, 28px);
  border-right: 1px solid rgba(246, 245, 241, 0.12);
  display: grid;
  gap: 8px;
  align-content: start;
}
.promo-proof-item:last-child { border-right: 0; }
.promo-proof-item b {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--rose);
  line-height: 1;
}
.promo-proof-item span {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(246, 245, 241, 0.78);
}
.promo-host-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.promo-finale-note {
  margin: 8px 0 0;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: rgba(246, 245, 241, 0.62);
}
.promo-dock {
  position: sticky;
  bottom: 0;
  z-index: 40;
  display: none;
  gap: 8px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(246, 245, 241, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.promo-dock .btn {
  flex: 1;
  min-height: 44px;
  padding-inline: 10px;
}
.promo-btn-light {
  background: var(--paper) !important;
  color: var(--ink) !important;
}
.promo-btn-light:hover {
  background: var(--rose) !important;
  color: var(--pine) !important;
}
.promo-btn-ghost {
  background: transparent !important;
  color: var(--paper) !important;
  border: 1px solid rgba(246, 245, 241, 0.38) !important;
}
.promo-btn-ghost:hover {
  background: rgba(246, 245, 241, 0.12) !important;
  border-color: var(--rose) !important;
  color: var(--rose) !important;
}
.promo-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  width: 28px;
  height: 42px;
  margin-left: -14px;
  border: 1px solid rgba(246, 245, 241, 0.35);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.promo-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--rose);
  animation: promo-scroll-dot 1.6s ease-in-out infinite;
}
@keyframes promo-hero-drift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-1%, -0.6%, 0); }
}
@keyframes promo-scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(12px); opacity: 1; }
}

.promo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.promo-strip-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
  border-right: 1px solid var(--line);
}
.promo-strip-item:last-child { border-right: 0; }
.promo-strip-item > span {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--moss);
  line-height: 1;
  font-weight: 600;
}
.promo-strip-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}
.promo-strip-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.promo-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(72px, 11vh, 120px) 0;
}
.promo-section-invert {
  width: 100%;
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(244, 212, 222, 0.14), transparent 55%),
    var(--pine);
  color: var(--paper);
  padding-inline: max(24px, calc((100% - var(--max)) / 2 + 24px));
  box-sizing: border-box;
}
.promo-section-invert .promo-section-head,
.promo-section-invert .promo-host-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
}
.promo-section-invert .eyebrow { color: var(--rose); }
.promo-section-invert .lead,
.promo-section-invert .promo-check-list,
.promo-section-invert p { color: rgba(246, 245, 241, 0.84); }
.promo-section-head {
  max-width: 38rem;
  display: grid;
  gap: 14px;
  margin-bottom: clamp(36px, 5vw, 52px);
}
.promo-section-head h2,
.promo-split h2,
.promo-finale h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.promo-section-head .lead { margin: 0; max-width: 34rem; }

.promo-timeline {
  list-style: none;
  margin: 0 0 clamp(44px, 6vw, 64px);
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: none;
}
.promo-timeline li {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  column-gap: 28px;
  row-gap: 8px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.promo-timeline li:last-child { border-bottom: 1px solid var(--line); }
.promo-timeline li::before {
  content: attr(data-step);
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--moss);
  line-height: 1.15;
}
.promo-timeline h3,
.promo-timeline p {
  grid-column: 2;
  min-width: 0;
}
.promo-timeline h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.promo-timeline p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.6;
}

.promo-events {
  width: 100%;
  background:
    radial-gradient(70% 80% at 0% 100%, rgba(244, 212, 222, 0.22), transparent 55%),
    radial-gradient(60% 70% at 100% 0%, rgba(78, 82, 66, 0.08), transparent 50%),
    var(--surface-muted);
  padding-inline: max(24px, calc((100% - var(--max)) / 2 + 24px));
  box-sizing: border-box;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.promo-events-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
}
.promo-events-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.promo-events-copy h3,
.promo-events-how h3 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.promo-event-kinds {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.promo-event-kinds li {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.promo-event-kinds li:last-child { border-bottom: 1px solid var(--line); }
.promo-event-kinds strong {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.promo-event-kinds span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}
.promo-events-how {
  padding: 28px;
  background: var(--pine);
  color: var(--paper);
  border-radius: var(--radius-soft);
  display: grid;
  gap: 18px;
  align-content: start;
}
.promo-events-how h3 { color: var(--paper); margin-bottom: 0; }
.promo-mini-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.promo-mini-steps li {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 4px 14px;
  align-items: start;
}
.promo-mini-steps li::before {
  content: attr(data-n);
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1.2;
}
.promo-mini-steps b {
  grid-column: 2;
  font-size: 0.98rem;
  font-weight: 650;
}
.promo-mini-steps span {
  grid-column: 2;
  color: rgba(246, 245, 241, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}
.promo-events-how .btn { justify-self: start; margin-top: 6px; }

.promo-feature-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.promo-feature-rail article {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.promo-feature-rail article:nth-child(3n) {
  border-right: 0;
  padding-right: 0;
}
.promo-feature-rail article:nth-child(3n + 1) {
  padding-left: 0;
}
.promo-feature-rail article:not(:nth-child(3n + 1)) {
  padding-left: 28px;
}
.promo-feature-rail h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.promo-feature-rail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.promo-host-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.promo-host-lead {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: rgba(246, 245, 241, 0.07);
  border-radius: var(--radius-soft);
  border-left: 3px solid var(--rose);
}
.promo-host-lead h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.promo-host-lead p { margin: 0; line-height: 1.6; }
.promo-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.promo-check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(246, 245, 241, 0.12);
}
.promo-check-list li:last-child { border-bottom: 0; }
.promo-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  width: 10px;
  height: 10px;
  border-radius: var(--radius);
  background: var(--rose);
}

.promo-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.promo-split .lead { margin: 14px 0 0; color: var(--muted); max-width: 32rem; }
.promo-quality-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.promo-quality-stats > div {
  background: var(--surface-muted);
  border-radius: var(--radius-soft);
  padding: 22px 18px;
  display: grid;
  gap: 8px;
  min-height: 110px;
  align-content: start;
}
.promo-quality-stats b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--pine);
  letter-spacing: -0.01em;
}
.promo-quality-stats span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.promo-money { border-top: 1px solid var(--line); }
.promo-money-row,
.promo-partner-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.promo-money-row article,
.promo-partner-row article {
  padding: 28px clamp(20px, 2.5vw, 32px) 28px 0;
  border-right: 1px solid var(--line);
}
.promo-money-row article:last-child,
.promo-partner-row article:last-child {
  border-right: 0;
  padding-right: 0;
}
.promo-money-row article:not(:first-child),
.promo-partner-row article:not(:first-child) {
  padding-left: clamp(20px, 2.5vw, 32px);
}
.promo-money-row h3,
.promo-partner-row h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 600;
  color: var(--pine);
  letter-spacing: -0.02em;
  line-height: 1;
}
.promo-money-row p,
.promo-partner-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 22rem;
}
.promo-partner-num {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
}
.promo-section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.promo-finale {
  background:
    radial-gradient(80% 70% at 50% 0%, rgba(244, 212, 222, 0.16), transparent 60%),
    var(--pine);
  color: var(--paper);
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 48px);
}
.promo-finale-inner {
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  text-align: center;
  justify-items: center;
}
.promo-finale .eyebrow { color: var(--rose); }
.promo-finale h2 { color: var(--paper); }
.promo-finale p {
  margin: 0;
  color: rgba(246, 245, 241, 0.82);
  max-width: 34rem;
  line-height: 1.6;
}
.promo-finale .promo-hero-cta { justify-content: center; }

.promo-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 4vw, 48px) 40px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.promo-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}
.promo-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .promo-strip,
  .promo-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-strip-item:nth-child(2),
  .promo-proof-item:nth-child(2) { border-right: 0; }
  .promo-strip-item:nth-child(1),
  .promo-strip-item:nth-child(2),
  .promo-proof-item:nth-child(1),
  .promo-proof-item:nth-child(2) { border-bottom: 1px solid rgba(78, 82, 66, 0.12); }
  .promo-proof-item:nth-child(1),
  .promo-proof-item:nth-child(2) { border-bottom-color: rgba(246, 245, 241, 0.12); }
}

@media (max-width: 960px) {
  .promo-nav,
  .promo-top-actions { display: none; }
  .promo-dock { display: flex; }
  .promo { padding-bottom: 72px; }
  .promo-strip,
  .promo-proof,
  .promo-host-grid,
  .promo-split,
  .promo-money-row,
  .promo-partner-row,
  .promo-feature-rail,
  .promo-events-showcase { grid-template-columns: 1fr; }
  .promo-strip-item,
  .promo-proof-item,
  .promo-money-row article,
  .promo-partner-row article,
  .promo-feature-rail article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-left: 0;
  }
  .promo-proof-item { border-bottom-color: rgba(246, 245, 241, 0.12); }
  .promo-proof-item:last-child,
  .promo-strip-item:last-child { border-bottom: 0; }
  .promo-strip-item:nth-child(2) { border-right: 0; }
  .promo-feature-rail article:nth-child(3n) { border-bottom: 1px solid var(--line); }
  .promo-feature-rail article:last-child { border-bottom: 0; }
  .promo-money-row article,
  .promo-partner-row article {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .promo-timeline li { grid-template-columns: 3.2rem minmax(0, 1fr); column-gap: 16px; }
  .promo-quality-stats { grid-template-columns: 1fr; }
  .promo-scroll { display: none; }
  .promo-events-how { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .promo-hero-bg,
  .promo-scroll span { animation: none; }
  .promo-reveal { opacity: 1; transform: none; transition: none; }
}
