:root {
  --paper: #ffffff;
  --paper-2: #f5f5f5;
  --ink: #1a1a1a;
  --ink-soft: #5a574e;
  --rule: #e4e4e4;
  /* Brand red — same on kickers, buttons, header line, logo triangle */
  --accent: #e0151f;
  --accent-hover: #b81218;
  --white: #ffffff;
  --max: 1120px;
  --pad: clamp(20px, 4vw, 40px);
  color-scheme: light only;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: 88px;
  background-color: #ffffff;
  color-scheme: light only;
}

body {
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background-color: #ffffff;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  overflow-x: clip;
  min-height: 100%;
  min-height: 100dvh;
}

/* Avoid text-wrap:pretty on body copy — browsers wrap early to balance lines. */
p,
.lede,
.stage-lead,
.pricing-note,
.listing-sub,
.benefit p,
.step p,
.ownership p,
.property-cta p,
.cta-end p {
  hyphens: manual;
}

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

a {
  color: var(--accent);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.wrap {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

/* Header */

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: max(14px, env(safe-area-inset-top, 0px))
    max(var(--pad), env(safe-area-inset-right, 0px))
    14px
    max(var(--pad), env(safe-area-inset-left, 0px));
  background: #ffffff;
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 2px solid var(--accent);
}

.site-shell {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 236;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 0;
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
  z-index: 236;
}

.lang-switch.is-dropdown {
  border: 0;
  padding: 0;
  gap: 0;
}

.lang-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  cursor: pointer;
  line-height: 1;
}

.lang-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.lang-switch.is-open .lang-toggle::after {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 240;
  min-width: 100%;
  display: grid;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.lang-menu[hidden] {
  display: none;
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  cursor: pointer;
  line-height: 1;
  text-align: left;
  width: 100%;
}

.lang-btn:hover {
  color: var(--ink);
  background: var(--paper-2);
}

.lang-btn.is-active {
  background: var(--ink);
  color: var(--white);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 1 auto;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

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

.logo-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.logo-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  white-space: nowrap;
}

.u-nowrap {
  white-space: nowrap;
}

@media (max-width: 700px) {
  .u-nowrap {
    white-space: normal;
  }

  .benefits-live-link {
    white-space: normal;
  }

  .stage-lead,
  .lede,
  .section-head h2,
  .benefit p,
  .pricing-note,
  .hero-contact-cta > p {
    overflow-wrap: break-word;
  }
}

.logo-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  background: transparent;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.social-link svg {
  display: block;
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

.header-social .social-link[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 30;
}

.header-social .social-link[data-tip]::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 2px);
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 30;
}

.header-social .social-link[data-tip]:hover::after,
.header-social .social-link[data-tip]:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.header-social .social-link[data-tip]:hover::before,
.header-social .social-link[data-tip]:focus-visible::before {
  opacity: 1;
}

/* Sticky header: show tip below icons so it isn't clipped */
.site-chrome .header-social .social-link[data-tip]::after {
  bottom: auto;
  top: calc(100% + 8px);
  transform: translateX(-50%) translateY(-4px);
}

.site-chrome .header-social .social-link[data-tip]::before {
  bottom: auto;
  top: calc(100% + 2px);
  border-top-color: transparent;
  border-bottom-color: var(--ink);
}

.site-chrome .header-social .social-link[data-tip]:hover::after,
.site-chrome .header-social .social-link[data-tip]:focus-visible::after {
  transform: translateX(-50%) translateY(0);
}

.site-chrome .nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 1 auto;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.nav .nav-cta {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-social {
  margin-left: 2px;
  gap: 10px;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  margin: 0 -8px 0 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  flex: 0 0 auto;
  position: relative;
  z-index: 236;
}

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}

.nav-toggle-bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease;
}

.nav-toggle-bars span:nth-child(1) {
  top: 0;
}

.nav-toggle-bars span:nth-child(2) {
  top: 6px;
}

.nav-toggle-bars span:nth-child(3) {
  top: 12px;
}

body.is-nav-open .nav-toggle-bars span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

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

body.is-nav-open .nav-toggle-bars span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

/* Buttons */

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

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

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.btn .arrow {
  transition: transform 0.15s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.2fr);
  gap: clamp(24px, 3.5vw, 40px);
  align-items: start;
  padding: clamp(28px, 4.5vw, 48px) 0 clamp(36px, 5vw, 56px);
}

.hero-copy {
  min-width: 0;
  padding-top: 0.35rem;
}

.hero h1 {
  max-width: none;
  font-size: clamp(1.75rem, 3.3vw, 2.45rem);
  line-height: 1.14;
}

.hero-tour {
  min-width: 0;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 4px 10px;
  border: 2px solid var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .lede {
  max-width: 26rem;
  margin-top: 0.85rem;
  font-size: clamp(0.98rem, 1.6vw, 1.05rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  line-height: 1.45;
}

.hero-price {
  margin-top: 1.25rem;
  color: var(--ink);
}

.hero-price-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  line-height: 1;
}

.hero-price-from {
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--ink-soft);
}

.hero-price-num {
  font-size: clamp(2.35rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--accent);
}

.hero-price-note,
.hero-price .hero-price-note,
.hero-price [data-i18n="hero.priceNote"] {
  display: block;
  margin-top: 0.65rem;
  max-width: 26rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--ink-soft);
}

.hero-price .hero-price-plain {
  font-size: 0.85em;
  letter-spacing: -0.04em;
}

.price-card .amount-from {
  display: inline-block;
  margin-right: 0.2em;
  font-size: 0.38em;
  font-weight: 700;
  letter-spacing: -0.02em;
  vertical-align: 0.55em;
  color: var(--ink-soft);
}

.price-card.is-featured .amount-from {
  color: color-mix(in srgb, var(--white) 72%, transparent);
}

.hero .tour-frame {
  aspect-ratio: 16 / 10;
  min-height: 280px;
  max-height: min(52vh, 480px);
}

.hero .tour-toolbar {
  margin-top: 10px;
}

.hero .tour-toolbar .btn {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.hero .actions {
  margin-top: 1.15rem;
}

.hero-book {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 1.25rem;
}

.hero-example-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-decoration: none;
}

.hero-example-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.hero-cta-label {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
}

.hero-book-link {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-decoration: none;
}

.hero-book-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.hero-social {
  gap: 12px;
}

.hero-social .social-link {
  width: 40px;
  height: 40px;
}

.hero-social .social-link svg {
  width: 16px;
  height: 16px;
}

.hero-book .messenger-row {
  justify-content: flex-start;
  margin-top: 0;
}

.messenger-row--sm {
  gap: clamp(18px, 4vw, 28px);
}

.messenger-row--sm .messenger-icon {
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.messenger-row--sm .messenger-btn {
  gap: 8px;
}

.messenger-row--sm .messenger-label {
  font-size: 0.85rem;
}

/* Sections */

.stage {
  padding: clamp(48px, 7vw, 88px) 0;
}

.section-head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.section-head .kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 4px 10px;
  border: 2px solid var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.2;
  text-wrap: balance;
}

.stage-lead {
  margin-top: 0.85rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

/* Tour frame */

.tour-block {
  position: relative;
}

.tour-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 320px;
  max-height: 78vh;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  overflow: hidden;
}

.tour-frame .tour-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.25s ease;
}

.tour-frame.is-loaded .tour-poster {
  opacity: 0;
  pointer-events: none;
}

.tour-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tour-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.tour-toolbar p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.tour-frame.is-fs {
  position: fixed;
  inset: 0;
  z-index: 100000;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none !important;
  min-height: 0 !important;
  aspect-ratio: auto;
  border: 0;
  background: #000;
  border-radius: 0;
}

/* Prefer locking the whole tour block so the exit control stays with the viewer */
.tour-block.is-fs {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #000;
  border-radius: 0;
}

.tour-block.is-fs .tour-frame {
  position: relative;
  inset: auto;
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: #000;
}

.tour-block.is-fs .tour-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tour-block.is-fs .tour-toolbar,
.tour-frame.is-fs + .tour-toolbar {
  position: absolute;
  left: auto;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 100001;
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  transform: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #fff;
}

.tour-block.is-fs .tour-toolbar > p,
.tour-block.is-fs .tour-toolbar .benefits-live-link,
.tour-block.is-fs .tour-toolbar a:not([data-fs-for]),
.tour-frame.is-fs + .tour-toolbar > p {
  display: none !important;
}

.tour-block.is-fs .benefits-live-actions {
  display: contents;
}

.tour-block.is-fs .tour-toolbar .btn,
.tour-frame.is-fs + .tour-toolbar .btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.tour-block.is-fs .tour-toolbar .btn:hover,
.tour-frame.is-fs + .tour-toolbar .btn:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: #fff;
}

body.is-tour-fs {
  overflow: hidden !important;
}

body.is-tour-fs .site-chrome,
body.is-tour-fs .pt360-cc,
body.is-tour-fs .pt360-cc-reopen,
body.is-tour-fs .nav-backdrop {
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Mobile: fill the screen; encourage landscape for usable width */
@media (max-width: 900px) {
  .tour-block.is-fs,
  .tour-frame.is-fs {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
  }

  .tour-block.is-fs .tour-toolbar {
    flex-direction: row;
    align-items: center;
    left: auto;
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    transform: none;
  }

  .tour-block.is-fs .tour-toolbar .btn {
    width: auto;
  }

  /* JS adds .tour-fs-portrait when the viewport is taller than wide */
  body.is-tour-fs.tour-fs-portrait .tour-block.is-fs {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: 100vh;
    height: 100vw;
    width: 100dvh;
    height: 100dvw;
    max-width: none;
    transform: translate(-50%, -50%) rotate(90deg);
    transform-origin: center center;
  }

  body.is-tour-fs.tour-fs-portrait .tour-block.is-fs .tour-toolbar {
    padding: 0;
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
  }
}

.tour-frame.is-fs + .tour-toolbar .btn-fs::after {
  content: none;
}

/* Benefits */

.benefits-live {
  margin: clamp(28px, 4vw, 44px) 0 clamp(36px, 5vw, 52px);
}

.benefits-live-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  max-height: min(62vh, 560px);
}

.benefits-live .tour-toolbar {
  flex-wrap: wrap;
  row-gap: 10px;
}

.benefits-live .tour-toolbar > p {
  flex: 1 1 220px;
  min-width: 0;
}

.benefits-live-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-left: auto;
}

.benefits-live-link {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.benefits-live-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.benefit {
  background: var(--paper);
  padding: clamp(24px, 3vw, 36px);
}

.benefit em {
  display: block;
  margin-bottom: 0.75rem;
  font-style: normal;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.benefit h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.benefit p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Process */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 0.25rem;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

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

/* Proof numbers */

.proof {
  padding-block: 0;
}

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

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--paper);
  padding: clamp(32px, 5vw, 56px) clamp(12px, 2vw, 24px);
  text-align: center;
}

.proof-figure {
  position: relative;
  display: inline-block;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

.proof-num {
  display: inline-block;
}

.proof-from {
  position: absolute;
  right: 100%;
  top: 0.42em;
  margin-right: 0.18em;
  font-size: 0.38em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: var(--ink-soft);
  white-space: nowrap;
}

.proof-item span:not(.proof-from):not(.proof-num) {
  display: block;
  margin-top: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Portfolio */

.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rule);
  transition: border-color 0.15s ease;
}

.card-link:hover {
  border-color: var(--ink);
  color: inherit;
}

.card-preview {
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.card-preview iframe,
.card-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.card-preview iframe {
  pointer-events: none;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 20px 22px 24px;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.card-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.card-body .more {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

/* Pricing */

.pricing {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px);
}

.price-card {
  background: var(--paper-2);
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
}

.price-card.is-featured {
  background: var(--ink);
  color: var(--white);
}

.price-card.is-featured p,
.price-card.is-featured li {
  color: color-mix(in srgb, var(--white) 78%, transparent);
}

.price-card .tier {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.price-card .amount {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.price-card.is-featured .amount {
  color: var(--white);
}

.price-card .scope {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.price-card.is-featured .scope {
  color: color-mix(in srgb, var(--white) 72%, transparent);
}

.price-card ul {
  list-style: none;
  margin-top: auto;
}

.price-card li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.price-card li::before {
  content: "–";
  position: absolute;
  left: 0;
}

.pricing-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: none;
  line-height: 1.5;
  text-wrap: wrap;
}

/* Ownership */

.ownership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.ownership h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
}

.ownership p {
  color: var(--ink-soft);
  margin-top: 0.85rem;
}

.ownership-points {
  list-style: none;
}

.ownership-points li {
  padding: 0.85rem 0;
  font-weight: 500;
}

.ownership-points li strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.ownership-points li span {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 0.95rem;
}

/* CTA end */

.cta-end {
  padding: clamp(56px, 9vw, 100px) 0;
  text-align: center;
}

.cta-end h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.65rem);
  max-width: min(40rem, 100%);
  margin-inline: auto;
  line-height: 1.2;
}

.cta-end p {
  margin: 1rem auto 0;
  max-width: 32rem;
  color: var(--ink-soft);
}

/* Messenger CTA row (Book a shoot) */

.messenger-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(28px, 6vw, 48px);
  margin-top: 1.75rem;
}

.messenger-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

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

.messenger-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  color: #4a1f24;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.messenger-btn:hover .messenger-icon {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  color: var(--accent);
}

.messenger-label {
  font-size: 0.95rem;
  font-weight: 500;
}

.book-secondary {
  justify-content: center;
  margin-top: 1.5rem;
}

@media (max-width: 560px) {
  .messenger-icon {
    width: 64px;
    height: 64px;
  }

  .messenger-row {
    gap: 22px;
  }
}

/* Property page */

.property-hero {
  padding: clamp(36px, 5vw, 56px) 0 0;
}

.property-meta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 40px);
}

.agency-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
}

.agency-logo {
  width: 48px;
  height: 48px;
  border: 2px solid var(--rule);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.agency-mark strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.agency-mark span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.property-meta h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 0.65rem;
}

.property-meta .desc {
  color: var(--ink-soft);
  max-width: 36rem;
}

.facts {
  list-style: none;
}

.facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0.55rem 0;
  font-size: 0.98rem;
}

.facts li span {
  color: var(--ink-soft);
}

.facts li strong {
  font-weight: 700;
  text-align: right;
}

.facts li strong a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

.facts li strong a:hover {
  color: var(--accent);
}

.property-tour {
  padding-bottom: clamp(40px, 6vw, 64px);
}

.property-tour .section-head {
  margin-bottom: 1.25rem;
}

.listing-tour-frame {
  aspect-ratio: 16 / 10;
  min-height: 320px;
  max-height: min(70vh, 620px);
}

.property-cta {
  padding: clamp(40px, 6vw, 64px) 0;
}

.property-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.property-cta p {
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.property-cta .messenger-row {
  margin-top: 1.5rem;
  justify-content: flex-start;
}

/* Rich listing page (Podkošljun-style) */

.listing-hero {
  padding: clamp(36px, 5vw, 56px) 0 1.5rem;
}

.listing-hero h1 {
  max-width: 22ch;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.65rem;
}

.listing-sub {
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.listing-price {
  margin-top: 1.25rem;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.listing-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 1.25rem;
}

.listing-chips li {
  padding: 6px 12px;
  border: 1px solid var(--rule);
  font-size: 0.9rem;
  font-weight: 500;
}

.listing-agency {
  margin: 0.75rem 0 1rem;
}

.amenity-title {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.amenity-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.amenity-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--accent);
}

.listing-gallery {
  padding-bottom: clamp(28px, 4vw, 40px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: minmax(140px, 18vw);
  gap: 8px;
}

.gallery-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  cursor: zoom-in;
  display: block;
  width: 100%;
  height: 100%;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  z-index: 1;
}

.gallery-item.is-hero {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 48px 64px;
  background: rgba(10, 10, 10, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 96px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.lightbox-close {
  top: 12px;
  right: 16px;
  font-size: 2.4rem;
  width: 48px;
  height: 48px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  width: 56px;
  height: 56px;
  opacity: 0.85;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 8px;
}

.lightbox-next {
  right: 8px;
}

.lightbox-count {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.listing-about {
  padding: clamp(40px, 6vw, 72px) 0;
}

.listing-about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.listing-about h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 1rem;
}

.listing-about p {
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
  max-width: 40rem;
}

/* Footer */

.site-footer {
  padding: 28px 0 40px;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.footer-cookie-btn {
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}

.footer-cookie-btn:hover {
  color: var(--accent);
}

.examples-sub {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 28ch;
  text-wrap: balance;
}

.examples-sub--next {
  margin-top: clamp(36px, 5vw, 52px);
}

.examples-foot {
  margin-top: clamp(22px, 3vw, 32px);
  font-weight: 700;
}

.examples-foot a {
  color: var(--ink);
  text-decoration: none;
}

.examples-foot a:hover {
  color: var(--accent);
}

.card-link.is-static {
  cursor: default;
}

.card-link.is-static:hover {
  border-color: var(--rule);
}

.tour-placeholder {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--paper-2);
  min-height: 320px;
}

.tour-placeholder > img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.tour-placeholder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--paper);
}

.tour-placeholder-copy h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
}

.tour-placeholder-copy p {
  color: var(--ink-soft);
}

.tour-placeholder-copy .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.hosp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.25rem;
}

.hosp-offer {
  background: var(--paper-2);
}

/* Vertical offer pages */

.vertical-offer {
  padding-bottom: 2rem;
}

.vertical-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(24px, 3.5vw, 40px);
  align-items: start;
  padding: clamp(28px, 4.5vw, 48px) 0 clamp(20px, 3vw, 32px);
  max-width: none;
}

.vertical-hero-copy {
  min-width: 0;
  padding-top: 0.35rem;
}

.vertical-hero h1 {
  max-width: 14ch;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0;
}

.vertical-hero .listing-sub {
  margin-top: 0.85rem;
  max-width: 28rem;
  font-size: clamp(0.98rem, 1.6vw, 1.05rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.vertical-hero .hero-price {
  margin-top: 1.15rem;
}

.vertical-hero .listing-chips {
  margin-top: 1.15rem;
}

.vertical-hero .hero-book {
  margin-top: 1.25rem;
}

.hero-secondary {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink-soft);
  text-decoration: none;
}

.hero-secondary:hover {
  color: var(--accent);
}

.vertical-hero-media {
  min-width: 0;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--paper-2);
}

.vertical-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vertical-pricing {
  padding: 12px 0 8px;
}

.vertical-pricing .pricing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 40rem;
}

.vertical-bullets {
  list-style: none;
  margin: 1.5rem 0 0;
  max-width: 40rem;
  display: grid;
  gap: 0.65rem;
}

.vertical-bullets li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.vertical-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent);
}

.vertical-preview {
  background: var(--paper-2);
}

@media (max-width: 800px) {
  .vertical-hero {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .vertical-hero h1 {
    max-width: 16ch;
  }

  .vertical-hero-media {
    order: -1;
  }

  .vertical-hero-media img {
    aspect-ratio: 16 / 10;
  }
}

.site-shot {
  margin: 0;
  max-width: 52rem;
}

.site-shot-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #2a2a2a;
  border-radius: 10px 10px 0 0;
  color: #bbb;
}

.site-shot-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
}

.site-shot-chrome span:nth-child(1) { background: #ff5f57; }
.site-shot-chrome span:nth-child(2) { background: #febc2e; }
.site-shot-chrome span:nth-child(3) { background: #28c840; }

.site-shot-chrome code {
  margin-left: 10px;
  font-size: 0.78rem;
  color: #cfcfcf;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-shot-body {
  position: relative;
  border: 1px solid var(--rule);
  border-top: 0;
  background: #111;
  overflow: hidden;
}

.site-shot-body > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.site-shot-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-shot-360,
.site-shot-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-shot-360 {
  background: rgba(26, 26, 26, 0.92);
  color: #fff;
}

.site-shot-cta {
  background: var(--accent);
  color: #fff;
}

.site-shot--real {
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper);
}

.site-shot--real img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: top center;
  display: block;
  background: #f3f3f3;
}

.site-shot-zoom {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.site-shot-zoom:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-shot-zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  background: rgba(26, 26, 26, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
  opacity: 0.92;
}

.site-shot-link {
  display: block;
}

.site-shot-live {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-shot-live a {
  color: var(--ink);
  text-decoration: none;
}

.site-shot-live a:hover {
  color: var(--accent);
}

.site-shot--real .site-shot-live {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
}

@media (max-width: 800px) {
  .tour-placeholder {
    grid-template-columns: 1fr;
  }

  .tour-placeholder > img {
    min-height: 200px;
    max-height: 240px;
  }

  .vertical-pricing .pricing {
    grid-template-columns: 1fr;
  }
}

/* Use cases (legacy helpers still used as tags) */

.usecase-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* FAQ */

.faq-list {
  max-width: 40rem;
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2rem 1.15rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.1rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 0 1.2rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

.faq-answer {
  padding: 0 0 1.2rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

.faq-answer p {
  padding: 0;
  margin: 0 0 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 0.25rem 0 0;
  padding-left: 1.15rem;
}

.faq-answer li {
  margin: 0.2rem 0;
}

/* Blog / articles */

.article {
  padding: 48px 0 72px;
  max-width: 42rem;
}

.article.wrap {
  width: min(42rem, calc(100% - (var(--pad) * 2)));
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.article h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.article-hero {
  margin: 0 0 1.5rem;
  border: 1px solid var(--rule);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 2rem 0 0.65rem;
}

.article p,
.article li {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.article .lede {
  color: var(--ink);
  font-size: 1.08rem;
}

.article ul {
  margin: 0 0 0.75rem 1.2rem;
}

.article code {
  font-size: 0.92em;
  padding: 0.1em 0.35em;
  background: var(--paper-2);
  border: 1px solid var(--rule);
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.article-back {
  margin-top: 1.75rem;
  font-weight: 700;
}

.article-back a {
  color: var(--ink);
  text-decoration: none;
}

.article-back a:hover {
  color: var(--accent);
}

.blog-index,
.examples-page {
  padding: 32px 0 72px;
}

.blog-index h1,
.examples-page h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
  max-width: none;
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.blog-index-lede {
  max-width: 38rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.article-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}

.article-row {
  display: block;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}

.article-row:hover {
  color: inherit;
}

.article-row:hover .more,
.article-row:hover h2 {
  color: var(--accent);
}

.article-row-media {
  display: none;
}

.article-row-media img {
  display: none;
}

.article-row-meta {
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.article-row-body h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  margin-bottom: 0.4rem;
}

.article-row-body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 0.55rem;
  max-width: 40rem;
}

.article-row .more {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.blog-card-tag {
  margin-bottom: 0.35rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-grid .card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

@media (max-width: 640px) {
  .article-row {
    display: block;
  }

  .article-row-media {
    display: none;
  }
}

/* Legal / privacy */

.legal {
  padding: 48px 0 72px;
  max-width: 42rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.legal h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.legal h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 2rem 0 0.65rem;
}

.legal h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.25rem 0 0.4rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.legal .lede {
  color: var(--ink);
  font-size: 1.05rem;
}

.legal ul {
  margin: 0 0 0.75rem 1.2rem;
}

.legal a {
  color: var(--ink);
  font-weight: 600;
}

.legal a:hover {
  color: var(--accent);
}

/* Cookie consent banner */

.pt360-cc {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 99999;
  pointer-events: none;
}

.pt360-cc[hidden] {
  display: none !important;
}

.pt360-cc__bar {
  pointer-events: auto;
  margin: 0 auto;
  max-width: var(--max);
  background: #111;
  color: #f5f5f5;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.28);
  padding: 1.1rem 1.25rem 1.25rem;
}

.pt360-cc__main {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: flex-end;
  justify-content: space-between;
}

.pt360-cc__copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.pt360-cc__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.pt360-cc__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.pt360-cc__privacy {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
}

.pt360-cc__privacy-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pt360-cc__privacy-link:hover,
.pt360-cc__privacy-link:focus-visible {
  color: rgba(255, 255, 255, 0.8);
}

.pt360-cc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.pt360-cc__btn {
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pt360-cc__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

.pt360-cc__btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pt360-cc__btn--primary:hover,
.pt360-cc__btn--primary:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.pt360-cc__btn--ghost {
  background: transparent;
  color: #f5f5f5;
}

.pt360-cc__btn--ghost:hover,
.pt360-cc__btn--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.pt360-cc__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pt360-cc__prefs[hidden] {
  display: none !important;
}

.pt360-cc__cats {
  display: grid;
  gap: 0.75rem;
}

.pt360-cc__cat {
  display: block;
  cursor: pointer;
}

.pt360-cc__cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.pt360-cc__cat-desc {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.68);
}

.pt360-cc__cat input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.pt360-cc__cat input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.pt360-cc__prefs-actions {
  margin-top: 0.9rem;
  display: flex;
  justify-content: flex-end;
}

.pt360-cc-reopen {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 99998;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.pt360-cc-reopen[hidden] {
  display: none !important;
}

.pt360-cc-reopen:hover,
.pt360-cc-reopen:focus-visible {
  border-color: var(--accent);
  background: #1a1a1a;
}

.pt360-cc-reopen:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .pt360-cc__bar {
    padding: 0.85rem 0.9rem 0.95rem;
  }

  .pt360-cc__title {
    font-size: 0.98rem;
  }

  .pt360-cc__desc {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .pt360-cc__actions {
    width: 100%;
  }

  .pt360-cc__btn {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 0;
    text-align: center;
  }

  .pt360-cc__btn--primary {
    order: -1;
    flex: 1 1 100%;
  }

  .pt360-cc-reopen {
    left: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.75rem;
  }
}

/* Motion */

@media (prefers-reduced-motion: no-preference) {
  .btn {
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .benefit,
  .step,
  .price-card,
  .card-link {
    animation: rise 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
}

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

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.1rem, 8vw, 2.75rem);
  }

  .hero .tour-frame {
    aspect-ratio: 16 / 10;
    max-height: 48vh;
    min-height: 240px;
  }

  .benefits-live {
    margin: 20px 0 26px;
  }

  .benefits-live-frame {
    aspect-ratio: 16 / 10;
    min-height: 260px;
    max-height: 70vh;
    height: auto;
  }

  .benefits-live .tour-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .benefits-live .tour-toolbar > p {
    flex: none;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .benefits-live-actions {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .benefits-live-actions .btn {
    flex: 0 0 auto;
  }

  .benefit-grid,
  .steps,
  .proof-grid,
  .portfolio,
  .ownership,
  .property-meta,
  .listing-about-grid {
    grid-template-columns: 1fr;
  }

  /* Keep benefit text on the same left edge as section heads / steps */
  .benefit {
    padding: 0 0 1.75rem;
    border-bottom: 1px solid var(--rule);
  }

  .benefit:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .benefit-grid {
    gap: 1.5rem;
  }

  .steps {
    gap: 1.75rem;
  }

  .step {
    padding: 0;
  }

  .pricing {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(120px, 28vw);
  }

  .gallery-item.is-hero {
    grid-column: span 2;
    grid-row: span 1;
  }

  .site-chrome {
    gap: 8px;
    padding-top: max(16px, env(safe-area-inset-top, 0px));
    padding-bottom: 14px;
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header {
    width: 100%;
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
  }

  .logo-name {
    font-size: 0.9rem;
  }

  .logo-tag {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .lang-switch {
    margin-left: auto;
  }

  .lang-toggle {
    padding: 7px 8px;
    font-size: 0.72rem;
  }

  .nav-toggle {
    display: inline-flex;
    margin-right: -6px;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 210;
    background: rgba(26, 26, 26, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  body.is-nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .header-tools {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(100vw, 340px);
    max-width: 100%;
    margin: 0;
    padding: max(5.75rem, calc(4.75rem + env(safe-area-inset-top, 0px)))
      max(var(--pad), env(safe-area-inset-right, 0px))
      max(2rem, env(safe-area-inset-bottom, 0px))
      var(--pad);
    gap: 1.75rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--paper);
    border-left: 1px solid var(--rule);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.28s;
    z-index: 225;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.is-nav-open .header-tools {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  body.is-nav-open .site-chrome {
    background: var(--paper);
    z-index: 230;
  }

  .site-chrome .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav > a {
    display: block;
    padding: 0.95rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    border-bottom: 1px solid var(--rule);
  }

  .nav .nav-cta {
    display: block;
    margin-top: 1.25rem;
    font-size: 1.1rem;
  }

  .nav-social {
    margin: 0.85rem 0 0;
    gap: 12px;
  }

  .header-tools .social-link {
    width: 44px;
    height: 44px;
    border-color: var(--accent);
  }

  .header-tools .social-link svg {
    width: 18px;
    height: 18px;
  }

  .site-chrome .header-social .social-link[data-tip]::after,
  .site-chrome .header-social .social-link[data-tip]::before {
    display: none;
  }

  .tour-frame {
    aspect-ratio: 16 / 10;
    max-height: 70vh;
  }
}

@media (max-width: 560px) {
  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero h1 {
    max-width: none;
  }

  .logo-name {
    font-size: 0.84rem;
  }

  .site-chrome {
    gap: 6px;
  }
}

/* SEO: breadcrumbs + related links */
.breadcrumbs {
  padding-top: 1rem;
  padding-bottom: 0;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--muted, #5c6570);
}

.breadcrumbs-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs-list li:not(:last-child)::after {
  content: "/";
  color: #b0b6be;
  margin-left: 0.15rem;
}

.breadcrumbs-list a {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs-list a:hover {
  color: var(--ink, #16181d);
  text-decoration: underline;
}

.breadcrumbs-list [aria-current="page"] span {
  color: var(--ink, #16181d);
  font-weight: 600;
}

.seo-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 0.5rem;
}

.seo-links:has(.seo-links-col:nth-child(2)) {
  grid-template-columns: 1fr 1fr;
}

.seo-links-title {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #5c6570);
  font-weight: 700;
}

.seo-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.seo-links a {
  color: var(--ink, #16181d);
  text-decoration: none;
  font-size: 0.95rem;
}

.seo-links a:hover {
  color: var(--accent, #e0151f);
  text-decoration: underline;
}

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

/* —— Hospitality landing —— */

.hosp-landing {
  --hosp-paper: #fbfaf7;
  --hosp-sand: #f3eee6;
  --hosp-ink: #1a1a1a;
  background: var(--hosp-paper);
}

.hosp-landing .stage {
  background: var(--hosp-sand);
}

.hosp-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px) 0 clamp(40px, 6vw, 64px);
}

.hosp-hero-copy,
.hosp-hero-visual {
  min-width: 0;
}

.hosp-hero h1 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hosp-hero .listing-sub {
  max-width: 34rem;
  margin-top: 0.9rem;
  line-height: 1.55;
}

.hosp-facts {
  display: grid;
  gap: 0.35rem;
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  max-width: 22rem;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.35;
  color: var(--hosp-ink, var(--ink));
}

.hosp-facts li {
  position: relative;
  padding: 0 0 0 0.95rem;
  border: none;
  background: none;
}

.hosp-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent, #c8102e);
}

.hosp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.35rem;
}

.hosp-hero-actions .btn {
  min-height: 44px;
}

.hosp-hero-contact {
  margin-top: 1.35rem;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.hosp-hero-contact .hero-social {
  gap: 14px;
}

.hosp-hero-contact .social-link {
  width: 40px;
  height: 40px;
}

.hosp-hero-contact .social-link svg {
  width: 16px;
  height: 16px;
}

.hosp-cta-label {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hosp-ink, var(--ink));
}

.hosp-micro {
  margin-top: 0.85rem;
  max-width: 32rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.hosp-hero-visual .tour-block {
  margin: 0;
}

.hosp-honest-note,
.hosp-proof-foot {
  margin: 0.85rem 0 0;
  max-width: 40rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.hosp-landing .tour-toolbar {
  flex-wrap: wrap;
  gap: 10px 12px;
}

.hosp-landing .tour-toolbar p {
  flex: 1 1 10rem;
  min-width: 0;
}

.hosp-landing .tour-toolbar .btn {
  flex: 0 0 auto;
}

.hosp-value {
  padding: clamp(40px, 6vw, 72px) 0;
}

.hosp-landing #faq {
  padding: clamp(40px, 6vw, 72px) 0;
}

.hosp-fit-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
}

.hosp-fit-list li {
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--rule);
  font-weight: 650;
  font-size: 0.98rem;
}

.hosp-uses-simple {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.hosp-uses-simple h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.hosp-uses-simple p {
  margin: 0;
  max-width: 28rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hosp-fit-list,
  .hosp-uses-simple {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .hosp-fit-list,
  .hosp-uses-simple {
    grid-template-columns: 1fr;
  }
}

.hosp-concept-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #111;
}

.hosp-concept-photo,
.hosp-demo-viewport > img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hosp-kenburns {
  transform-origin: 55% 40%;
}

@media (prefers-reduced-motion: no-preference) {
  .hosp-kenburns {
    animation: hospKen 18s ease-in-out infinite alternate;
  }
}

@keyframes hospKen {
  from { transform: scale(1); }
  to { transform: scale(1.06) translate(-1.5%, -1%); }
}

.hosp-concept-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, transparent 35%, transparent 62%, rgba(0,0,0,0.45) 100%);
}

.hosp-concept-drag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  background: rgba(20, 20, 20, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.hosp-concept-fs {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: rgba(20, 20, 20, 0.72);
  color: #fff;
  font-size: 1rem;
}

.hosp-hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(224, 21, 31, 0.85);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
}

.hosp-concept-nav {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.7);
}

.hosp-concept-nav span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 700;
}

.hosp-concept-nav span.is-active {
  background: #fff;
  color: var(--ink);
}

.hosp-concept-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(20, 20, 20, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hosp-demo-viewport .hosp-concept-badge {
  bottom: auto;
  top: 12px;
  right: 12px;
}

.hosp-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.hosp-value-card {
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid var(--rule);
}

.hosp-value-icon {
  display: inline-flex;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hosp-value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.hosp-value-card p {
  color: var(--ink-soft);
  max-width: 34ch;
  line-height: 1.55;
}

.hosp-demo {
  padding: clamp(36px, 5vw, 56px) 0;
}

.hosp-demo-stage {
  margin-top: 1.5rem;
}

.hosp-demo-viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #111;
}

.hosp-demo-viewport > img {
  transition: opacity 0.2s ease;
}

.hosp-demo-viewport > img.is-fading {
  opacity: 0.35;
}

.hosp-demo-chrome {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.22), transparent 40%);
}

.hosp-demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.hosp-demo-tabs button {
  min-height: 44px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--rule);
  background: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hosp-demo-tabs button.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

.hosp-demo-tabs button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hosp-demo-caption {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 52rem;
  line-height: 1.5;
}

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

.hosp-space {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #222;
}

.hosp-space img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hosp-space figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.9rem 0.85rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hosp-space:hover img {
    transform: scale(1.04);
  }
}

.hosp-uses {
  padding: clamp(40px, 6vw, 72px) 0;
}

.hosp-uses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: 1.5rem;
}

.hosp-use h3 {
  margin-top: 1rem;
  font-size: 1.15rem;
}

.hosp-use p {
  margin-top: 0.4rem;
  color: var(--ink-soft);
  max-width: 34ch;
  line-height: 1.5;
}

.hosp-uses-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.hosp-mock {
  border: 1px solid var(--rule);
  background: #fff;
  overflow: hidden;
}

.hosp-mock--browser .hosp-mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #2a2a2a;
  color: #bbb;
}

.hosp-mock--browser .hosp-mock-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #555;
}

.hosp-mock--browser .hosp-mock-bar span:nth-child(1) { background: #ff5f57; }
.hosp-mock--browser .hosp-mock-bar span:nth-child(2) { background: #febc2e; }
.hosp-mock--browser .hosp-mock-bar span:nth-child(3) { background: #28c840; }

.hosp-mock--browser code {
  margin-left: 8px;
  font-size: 0.72rem;
  color: #cfcfcf;
}

.hosp-mock-body {
  position: relative;
}

.hosp-mock-body img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hosp-mock-pill {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.92);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.hosp-mock--phone {
  min-height: 220px;
  padding: 1rem;
  background: var(--hosp-sand);
}

.hosp-mock-chat {
  display: grid;
  gap: 8px;
}

.hosp-mock-bubble {
  max-width: 88%;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.35;
}

.hosp-mock-bubble--in {
  background: #fff;
  border: 1px solid var(--rule);
}

.hosp-mock-bubble--out {
  justify-self: end;
  background: #dcf8c6;
}

.hosp-mock-link {
  justify-self: end;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.hosp-mock--cards {
  display: grid;
  gap: 8px;
  padding: 1rem;
  min-height: 220px;
  background: var(--hosp-sand);
}

.hosp-mock--cards span {
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--rule);
  font-weight: 700;
  font-size: 0.92rem;
}

.hosp-integration {
  max-width: none;
}

.hosp-int-callout {
  position: absolute;
  left: 18%;
  bottom: 22%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.hosp-int-arrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid #fff;
  transform: rotate(-35deg);
}

.hosp-pricing {
  padding: clamp(40px, 6vw, 72px) 0 16px;
}

.hosp-price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  align-items: stretch;
}

.hosp-price-grid .price-card .btn {
  margin-top: auto;
  min-height: 44px;
}

.hosp-price-grid .price-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hosp-price-grid .price-card ul {
  margin: 0.75rem 0 0;
}

.hosp-intro {
  margin: 8px auto 36px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--hosp-sand);
  border: 1px solid var(--rule);
  max-width: min(var(--max), calc(100% - (var(--pad) * 2)));
}

.hosp-intro h2 {
  margin: 0.5rem 0 0.85rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.hosp-intro p {
  max-width: 42rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 0.55rem;
}

.hosp-intro .btn {
  margin-top: 1rem;
  min-height: 44px;
}

.contact-icons {
  margin-top: 1.25rem;
  gap: 16px;
}

.contact-icons .social-link {
  width: 40px;
  height: 40px;
}

.contact-icons .social-link svg {
  width: 16px;
  height: 16px;
}

.cta-end .contact-icons {
  justify-content: center;
  margin-top: 1.5rem;
}

.article-cta .contact-icons {
  margin-top: 0;
  margin-right: 1rem;
}

.property-cta .contact-icons {
  margin-top: 0;
}

.hosp-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hosp-final {
  margin-top: 24px;
  padding: clamp(48px, 8vw, 88px) 0;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.72), rgba(18, 18, 18, 0.86)),
    url("assets/usecases/usecase-hospitality-pool.jpg?v=2") center / cover;
  color: #fff;
}

.hosp-final-inner {
  max-width: 36rem;
}

.hosp-final h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  max-width: 28rem;
  margin-bottom: 0.75rem;
}

.hosp-final p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  max-width: 36rem;
}

.hosp-final-social {
  margin-top: 1.35rem;
  gap: 16px;
}

.hosp-final-social .social-link {
  width: 40px;
  height: 40px;
}

.hosp-final-social .social-link svg {
  width: 16px;
  height: 16px;
}

.hosp-final-note {
  margin-top: 0.85rem;
  font-size: 0.92rem;
}

.hosp-final-secondary {
  margin-top: 1.35rem;
}

.hosp-final-secondary a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  text-decoration: none;
}

.hosp-final-secondary a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .hosp-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .hosp-hero-visual {
    order: 0;
  }

  .hosp-value-grid,
  .hosp-uses-grid,
  .hosp-steps {
    grid-template-columns: 1fr 1fr;
  }

  .hosp-price-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hosp-spaces-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hosp-value-grid,
  .hosp-uses-grid,
  .hosp-price-grid,
  .hosp-steps,
  .hosp-spaces-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hosp-hero h1 {
    max-width: none;
    font-size: clamp(1.7rem, 7.2vw, 2.15rem);
  }

  .hosp-hero .listing-sub {
    max-width: none;
  }

  .hosp-facts {
    max-width: none;
  }

  .hosp-landing .tour-frame {
    min-height: 220px;
    max-height: 42vh;
  }

  .hosp-landing .tour-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .hosp-landing .tour-toolbar .btn {
    width: 100%;
    justify-content: center;
  }

  .hosp-landing .tour-block.is-fs .tour-toolbar {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0;
  }

  .hosp-landing .tour-block.is-fs .tour-toolbar .btn {
    width: auto;
  }

  .hosp-int-callout {
    left: 8%;
    bottom: 16%;
    max-width: calc(100% - 1.5rem);
    font-size: 0.72rem;
    padding: 0.4rem 0.6rem;
  }

  .hosp-fit-list {
    gap: 12px;
  }

  .hosp-fit-list li {
    padding: 0.95rem 1.05rem;
  }

  .hosp-landing .stage-lead {
    margin-bottom: 0.25rem;
  }

  .hosp-landing .hosp-fit-list {
    margin-top: 0.35rem;
  }

  .hosp-value-card {
    padding: 1.1rem 1rem;
  }

  .hosp-uses-simple {
    gap: 1.35rem;
  }

  .hosp-landing .stage {
    padding: clamp(36px, 8vw, 56px) 0;
  }

  .hosp-landing .section-head {
    margin-bottom: 1.35rem;
  }

  .hosp-landing .pt360-cc-reopen {
    left: auto;
    right: 0.75rem;
  }
}
