@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #10231f;
  --ink-2: #183a32;
  --eucalyptus: #2f6254;
  --paper: #f4f1e9;
  --white: #fffdf8;
  --sand: #d9cbb9;
  --ochre: #c9703d;
  --ochre-soft: #e5a47d;
  --sky: #8bb4b3;
  --lime: #c8d889;
  --muted: #68756f;
  --line-dark: rgba(255, 253, 248, 0.16);
  --line-light: rgba(16, 35, 31, 0.14);
  --shadow: 0 24px 70px rgba(16, 35, 31, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.dark {
  background: var(--ink);
  color: var(--white);
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--ochre-soft);
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: 92px;
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.serif {
  font-family: "Newsreader", Georgia, serif;
}

.eyebrow {
  color: var(--ochre);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--ochre-soft);
}

.kicker {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.title {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.subtitle {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
  max-width: 62ch;
}

.dark .lede,
.on-dark .lede {
  color: rgba(255, 253, 248, 0.72);
}

.dark .section-paper .lede,
.dark .section-white .lede {
  color: var(--muted);
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.btn-primary:hover {
  background: #b85d2f;
}

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

.btn-outline {
  border-color: currentColor;
  background: transparent;
}

.btn-outline-light {
  border-color: rgba(255, 253, 248, 0.32);
  color: var(--white);
}

.text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  padding-bottom: 2px;
}

.site-nav {
  backdrop-filter: blur(16px);
  background: rgba(16, 35, 31, 0.93);
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-nav.light-nav {
  background: rgba(244, 241, 233, 0.94);
  border-color: var(--line-light);
  color: var(--ink);
}

.nav-inner {
  align-items: center;
  display: flex;
  height: 78px;
  justify-content: space-between;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  gap: 12px;
  letter-spacing: -0.025em;
}

.wordmark-symbol {
  align-items: center;
  background: var(--ochre);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-family: "Newsreader", Georgia, serif;
  font-size: 0.9rem;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
}

.nav-links a:not(.btn) {
  color: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.75;
}

.nav-links a:hover {
  opacity: 1;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  cursor: pointer;
  display: none;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 15px;
}

.light-nav .menu-toggle {
  border-color: var(--line-light);
}

.mobile-panel {
  background: var(--ink);
  color: var(--white);
  display: none;
  inset: 78px 0 0;
  padding: 30px 24px;
  position: fixed;
  z-index: 49;
}

.mobile-panel.open {
  display: block;
}

.mobile-panel a {
  border-bottom: 1px solid var(--line-dark);
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
  padding: 16px 0;
}

.mobile-panel .btn {
  display: inline-flex;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 0.9rem;
  margin-top: 28px;
  padding-inline: 22px;
}

.hero {
  overflow: hidden;
  padding: 96px 0 88px;
  position: relative;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.hero-copy .display {
  margin: 22px 0 28px;
}

.hero-copy .lede {
  max-width: 55ch;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}

.proof-strip {
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip.light {
  border-color: var(--line-light);
}

.proof-item {
  border-right: 1px solid var(--line-dark);
  min-height: 116px;
  padding: 25px 28px;
}

.light .proof-item {
  border-color: var(--line-light);
}

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

.proof-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 7px;
}

.proof-item span {
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.82rem;
}

.light .proof-item span {
  color: var(--muted);
}

.section {
  padding: 104px 0;
}

.section.compact {
  padding: 74px 0;
}

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

.section-euca {
  background: var(--ink-2);
  color: var(--white);
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.section-white {
  background: var(--white);
  color: var(--ink);
}

.section-ochre {
  background: var(--ochre);
  color: var(--white);
}

.section-head {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr minmax(280px, 0.62fr);
  margin-bottom: 52px;
}

.section-head .title {
  margin-top: 15px;
}

.operating-board {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 22px;
  box-shadow: var(--shadow);
  color: var(--ink);
  overflow: hidden;
}

.board-top {
  align-items: center;
  background: #e8eee8;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
}

.board-top strong {
  font-size: 0.82rem;
}

.live-pill {
  align-items: center;
  background: var(--white);
  border-radius: 999px;
  color: var(--eucalyptus);
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 800;
  gap: 7px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.live-pill::before {
  background: #2f9d68;
  border-radius: 50%;
  content: "";
  height: 7px;
  width: 7px;
}

.board-body {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
}

.board-summary {
  background: var(--ink);
  color: var(--white);
  padding: 28px;
}

.board-summary .big-number {
  font-family: "Newsreader", Georgia, serif;
  font-size: 3.4rem;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 14px 0 4px;
}

.board-summary small {
  color: rgba(255, 253, 248, 0.65);
}

.board-list {
  display: grid;
  gap: 0;
  padding: 12px 24px;
}

.board-row {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  gap: 12px;
  grid-template-columns: 18px 1fr auto;
  padding: 15px 0;
}

.board-row:last-child {
  border-bottom: 0;
}

.board-row i {
  background: var(--ochre);
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.board-row strong {
  display: block;
  font-size: 0.79rem;
}

.board-row span {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
}

.board-row b {
  color: var(--eucalyptus);
  font-size: 0.7rem;
  text-transform: uppercase;
}

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

.machine-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 250px;
  padding: 26px;
  position: relative;
}

.machine-card::after {
  color: var(--ochre);
  content: "→";
  font-size: 1.4rem;
  position: absolute;
  right: -15px;
  top: 34px;
  z-index: 2;
}

.machine-card:last-child::after {
  content: "";
}

.machine-card .number {
  color: var(--ochre);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.machine-card h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
  margin: 34px 0 14px;
}

.machine-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.machine-card .owner-output {
  background: #eaf0ea;
  border-radius: var(--radius-sm);
  color: var(--eucalyptus);
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  margin-top: 20px;
  padding: 10px 12px;
}

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

.business-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
}

.business-card .card-accent {
  height: 9px;
}

.business-card.management .card-accent {
  background: var(--ochre);
}

.business-card.cleaning .card-accent {
  background: var(--sky);
}

.business-card.ops .card-accent {
  background: var(--lime);
}

.business-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.business-card .role {
  color: rgba(255, 253, 248, 0.55);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.business-card h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.15rem;
  line-height: 1;
  margin: 24px 0 14px;
}

.business-card p {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.9rem;
}

.business-card a {
  color: var(--ochre-soft);
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: auto;
  padding-top: 30px;
}

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

.evidence-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 28px;
}

.evidence-card .evidence-value {
  color: var(--ochre);
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.9rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.evidence-card h3 {
  font-size: 1rem;
  margin: 18px 0 8px;
}

.evidence-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.founder-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 22px;
  color: var(--ink);
  padding: 34px;
}

.founder-id {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.founder-avatar {
  align-items: center;
  background: var(--ochre);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.25rem;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.founder-id strong {
  display: block;
}

.founder-id span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
}

.founder-card blockquote {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.cta-band {
  padding: 96px 0;
  text-align: center;
}

.cta-band .title {
  margin: 0 auto 28px;
  max-width: 14ch;
}

.site-footer {
  background: #0b1b18;
  color: var(--white);
  padding: 66px 0 36px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.82rem;
}

.footer-grid h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 253, 248, 0.42);
  display: flex;
  font-size: 0.72rem;
  gap: 20px;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 22px;
}

.price-flag {
  align-items: flex-end;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 22px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding: 30px;
}

.price-flag .fee {
  color: var(--ochre);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.price-flag .fee small {
  color: var(--muted);
  display: block;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  margin-top: 13px;
}

.price-flag .market {
  background: #eaf0ea;
  border-radius: var(--radius);
  max-width: 180px;
  padding: 18px;
}

.price-flag .market b {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.price-flag .market span {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  margin-top: 8px;
}

.comparison {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-row {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  gap: 20px;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  padding: 18px 22px;
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row.header {
  background: #e8eee8;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-row strong {
  font-size: 0.84rem;
}

.comparison-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.comparison-row .ours {
  color: var(--eucalyptus);
  font-weight: 800;
}

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

.integrated-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 28px;
}

.integrated-card .icon {
  align-items: center;
  background: #e8eee8;
  border-radius: 50%;
  color: var(--eucalyptus);
  display: flex;
  font-size: 0.78rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.integrated-card h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.65rem;
  margin: 28px 0 12px;
}

.integrated-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.process {
  border-top: 1px solid var(--line-light);
}

.process-row {
  align-items: start;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  gap: 30px;
  grid-template-columns: 70px 0.7fr 1.3fr;
  padding: 30px 0;
}

.process-row .step-number {
  color: var(--ochre);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.process-row h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.6rem;
}

.process-row p {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq {
  border-top: 1px solid var(--line-light);
}

.faq details {
  border-bottom: 1px solid var(--line-light);
  padding: 22px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq details p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 72ch;
}

.asset-direction {
  background: #e7ece6;
  border: 1px dashed rgba(16, 35, 31, 0.35);
  border-radius: var(--radius);
  display: grid;
  min-height: 260px;
  padding: 26px;
  place-items: end start;
}

.asset-direction strong {
  display: block;
  font-size: 0.84rem;
}

.asset-direction span {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  margin-top: 5px;
}

.hosts-hero {
  padding: 84px 0 118px;
}

.hosts-hero-grid {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
}

.hosts-page .hosts-hero .display {
  font-size: clamp(3.4rem, 6.7vw, 6.2rem);
  max-width: 9.5ch;
}

.hosts-hero-visual {
  min-height: 650px;
  position: relative;
}

.hosts-hero-visual > img {
  border-radius: 22px;
  box-shadow: var(--shadow);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.photo-label {
  background: rgba(16, 35, 31, 0.9);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  color: var(--white);
  left: 22px;
  padding: 10px 15px;
  position: absolute;
  top: 22px;
}

.photo-label strong,
.photo-label span {
  display: block;
}

.photo-label strong {
  font-size: 0.78rem;
}

.photo-label span {
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.66rem;
}

.hosts-hero-visual .price-flag {
  bottom: -58px;
  left: -48px;
  position: absolute;
  right: 24px;
}

.properties-section .lede {
  color: rgba(255, 253, 248, 0.7);
}

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

.property-card {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  color: var(--ink);
  overflow: hidden;
}

.property-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.property-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.property-card:hover .property-image img {
  transform: scale(1.025);
}

.property-tag {
  background: rgba(16, 35, 31, 0.88);
  border-radius: 999px;
  bottom: 16px;
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
  left: 16px;
  padding: 8px 11px;
  position: absolute;
  text-transform: uppercase;
}

.property-card-body {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1.2fr;
  padding: 26px;
}

.property-card-body h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  margin-top: 8px;
}

.property-card-body p {
  color: var(--muted);
  font-size: 0.84rem;
}

.property-card-body .text-link {
  font-size: 0.78rem;
  grid-column: 2;
  justify-self: start;
}

.property-proof-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.7fr 1fr;
  grid-template-rows: repeat(2, 220px);
  margin-top: 22px;
}

.property-proof-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.property-proof-grid .property-proof-main {
  grid-row: 1 / 3;
}

.property-proof-grid img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.property-proof-grid figcaption {
  background: linear-gradient(transparent, rgba(11, 27, 24, 0.78));
  bottom: 0;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  left: 0;
  padding: 34px 18px 14px;
  position: absolute;
  right: 0;
}

.booking-panel {
  align-items: center;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 48px;
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 54px;
  padding-top: 54px;
}

.booking-copy h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
  margin: 14px 0 16px;
}

.booking-copy p:last-child {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.9rem;
  max-width: 48ch;
}

.hospitable-slot {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 18px;
  color: var(--ink);
  display: flex;
  gap: 18px;
  min-height: 190px;
  padding: 30px;
}

.calendar-mark {
  align-items: center;
  background: var(--ochre);
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
  height: 68px;
  justify-content: center;
  width: 68px;
}

.hospitable-slot strong,
.hospitable-slot span {
  display: block;
}

.hospitable-slot strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.6rem;
}

.hospitable-slot div span {
  color: var(--muted);
  font-size: 0.78rem;
}

.comparison-note {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 16px;
}

.report-title,
.questions-title {
  margin: 16px 0 22px;
}

.footer-intro {
  margin-top: 18px;
  max-width: 34ch;
}

.brand-page .hero {
  padding: 110px 0;
  text-align: center;
}

.brand-lockup {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 42px;
}

.brand-lockup .brand-name {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.brand-lockup .descriptor {
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-verdict {
  background: var(--white);
  border-left: 6px solid var(--ochre);
  border-radius: var(--radius);
  color: var(--ink);
  margin-top: 42px;
  padding: 28px;
  text-align: left;
}

.brand-verdict strong {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.brand-verdict p {
  color: var(--muted);
}

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

.brand-spec {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 26px;
}

.brand-spec.dark-spec {
  background: var(--ink);
  color: var(--white);
}

.brand-spec h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.7rem;
  margin: 28px 0 12px;
}

.brand-spec p {
  color: var(--muted);
  font-size: 0.86rem;
}

.dark-spec p {
  color: rgba(255, 253, 248, 0.65);
}

.swatches {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
}

.swatch {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 160px;
  padding: 18px;
}

.swatch b,
.swatch span {
  display: block;
  font-size: 0.72rem;
}

.swatch span {
  opacity: 0.65;
}

.recommendation-table {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.recommendation-row {
  align-items: start;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  gap: 24px;
  grid-template-columns: 0.45fr 1.1fr 1.45fr;
  padding: 22px;
}

.recommendation-row:last-child {
  border-bottom: 0;
}

.recommendation-row.header {
  background: #e8eee8;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.recommendation-row p {
  color: var(--muted);
  font-size: 0.86rem;
}

.status {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 7px 10px;
  text-transform: uppercase;
}

.status.keep {
  background: #dbe9df;
  color: #23623f;
}

.status.reject {
  background: #f2ded4;
  color: #9a4327;
}

.status.test {
  background: #ece7c9;
  color: #6d5a14;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .hero-grid > :last-child {
    order: -1;
  }

  .section-head {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .machine,
  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .light .proof-item:nth-child(-n + 2) {
    border-color: var(--line-light);
  }

  .business-grid,
  .evidence-grid,
  .integrated-cards,
  .brand-spec-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hosts-hero-grid {
    gap: 88px;
    grid-template-columns: 1fr;
  }

  .hosts-page .hosts-hero .display {
    max-width: 11ch;
  }

  .hosts-hero-visual {
    min-height: 590px;
  }

  .hosts-hero-visual .price-flag {
    left: 28px;
  }

  .property-card-body {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .property-card-body .text-link {
    grid-column: 1;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-inner .btn.nav-cta {
    display: none;
  }

  .hero {
    padding: 68px 0 64px;
  }

  .hosts-hero {
    padding-bottom: 68px;
  }

  .hero-grid > :last-child {
    order: 0;
  }

  .display {
    font-size: clamp(3rem, 16vw, 4.9rem);
  }

  .section {
    padding: 76px 0;
  }

  .proof-strip,
  .machine,
  .business-grid,
  .evidence-grid,
  .integrated-cards,
  .brand-spec-grid,
  .footer-grid,
  .swatches {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(2) {
    border-bottom: 1px solid var(--line-dark);
    border-right: 0;
  }

  .light .proof-item {
    border-color: var(--line-light);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .board-body {
    grid-template-columns: 1fr;
  }

  .machine-card {
    min-height: 0;
  }

  .machine-card::after {
    bottom: -19px;
    content: "↓";
    right: 26px;
    top: auto;
  }

  .machine-card:last-child::after {
    content: "";
  }

  .price-flag {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .price-flag .market {
    max-width: none;
  }

  .comparison-row {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .comparison-row.header {
    display: none;
  }

  .comparison-row span::before {
    color: var(--ink);
    content: attr(data-label) ": ";
    font-weight: 800;
  }

  .process-row {
    gap: 12px;
    grid-template-columns: 48px 1fr;
  }

  .process-row p {
    grid-column: 2;
  }

  .recommendation-row {
    grid-template-columns: 1fr;
  }

  .recommendation-row.header {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .hosts-hero-grid {
    gap: 42px;
  }

  .hosts-hero-visual {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .hosts-hero-visual > img {
    aspect-ratio: 4 / 5;
    height: auto;
    position: relative;
  }

  .hosts-hero-visual .price-flag {
    bottom: auto;
    left: auto;
    position: relative;
    right: auto;
  }

  .photo-label {
    left: 14px;
    top: 14px;
  }

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

  .property-proof-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 320px 210px 210px;
  }

  .property-proof-grid .property-proof-main {
    grid-row: auto;
  }

  .booking-panel {
    gap: 28px;
    margin-top: 42px;
    padding-top: 42px;
  }

  .hospitable-slot {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
