/* KeepItDirect — shared marketing + listing styles
   Rose accent #E31C5F · Plus Jakarta Sans · 16px photo radius */
:root {
  --rose: #E31C5F;
  --rose-dark: #C11651;
  --rose-soft: #FDE8EE;
  --ink: #222222;
  --muted: #667085;
  --paper: #ffffff;
  --wash: #f6f4f2;
  --line: #e8e4df;
  --shadow: 0 12px 40px rgba(34, 34, 34, 0.08);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --photo-radius: 16px;
  --wrap: 1120px;
  --header-h: 64px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.03em; margin: 0 0 0.6rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
.wrap { width: min(var(--wrap), calc(100% - 2rem)); margin-inline: auto; }
.kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
}
.muted { color: var(--muted); }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.brand:hover { text-decoration: none; opacity: 0.92; }
.brand img {
  height: 40px;
  width: auto;
  display: block;
}
.brand span { color: var(--rose); }
.nav-links { display: none; align-items: center; gap: 1.35rem; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 0.95rem; text-decoration: none; }
.nav-links a:hover { color: var(--rose); }
.nav-cta { background: var(--rose); color: #fff !important; padding: 0.5rem 0.85rem; border-radius: 999px; font-size: 0.88rem; white-space: nowrap; }
.nav-cta:hover { background: var(--rose-dark); color: #fff !important; text-decoration: none; box-shadow: 0 6px 16px rgba(227, 28, 95, 0.28); }
.nav-toggle {
  width: 42px; height: 42px; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; cursor: pointer; display: grid; place-items: center; padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-drawer {
  display: none; flex-direction: column; gap: 0.25rem; padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--line); background: #fff;
}
.nav-drawer.is-open { display: flex; }
.nav-drawer a {
  color: var(--ink); font-weight: 600; padding: 0.7rem 0.4rem; text-decoration: none;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-family: inherit; font-weight: 700; font-size: 0.95rem;
  border-radius: 999px; padding: 0.85rem 1.2rem; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover {
  background: var(--rose-dark); color: #fff;
  box-shadow: 0 8px 22px rgba(227, 28, 95, 0.32);
  transform: translateY(-1px);
}
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover {
  border-color: var(--rose); color: var(--rose);
  box-shadow: 0 8px 22px rgba(34, 34, 34, 0.10);
  transform: translateY(-1px);
}
.btn-airbnb { background: #fff; color: var(--ink); border-color: var(--line); width: 100%; }
.btn-block { width: 100%; }
button.btn-airbnb { cursor: default; }
.hero-mkt { padding: 2.2rem 0 2.6rem; }
.hero-grid { display: grid; gap: 1.75rem; }
.hero-mkt h1 { font-size: clamp(2rem, 7vw, 3.35rem); font-weight: 800; max-width: 18ch; }
.hero-mkt .sub { font-size: 1.08rem; color: var(--muted); max-width: 42ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.4rem; }
.lead-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.25rem; box-shadow: var(--shadow);
}
.lead-card h2 { font-size: 1.15rem; }
form { display: grid; gap: 0.7rem; }
label { font-size: 0.8rem; font-weight: 700; color: var(--ink); }
label span { display: block; margin-bottom: 0.3rem; }
input, textarea, select {
  width: 100%; font: inherit; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 0.75rem 0.85rem;
}
input:focus, textarea:focus { outline: 2px solid var(--rose); border-color: var(--rose); }
.fee-strip { background: var(--ink); color: #fff; padding: 1.15rem 0; }
.fee-strip .wrap { display: grid; gap: 0.35rem; }
.fee-strip strong { color: #fff; }
.fee-math { color: #f3c5d3; font-weight: 700; }
.section { padding: 3.2rem 0; }
.section-head { max-width: 40rem; margin-bottom: 1.6rem; }
.section-head h2 { font-size: clamp(1.55rem, 4vw, 2.1rem); }
.wash { background: var(--wash); }
.card-grid { display: grid; gap: 0.9rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.15rem 1.2rem;
}
.card h3 { font-size: 1.05rem; }
.card p:last-child { margin-bottom: 0; }
.no-card { background: #fff; border: 1px dashed #d7d2cc; }
.no-card h3 { color: var(--muted); }
.example-card {
  display: grid; gap: 0; overflow: hidden; padding: 0; text-decoration: none; color: inherit;
}
.example-card:hover { text-decoration: none; color: inherit; }
.example-card img { width: 100%; height: 240px; object-fit: cover; }
.example-card .body { padding: 1.15rem 1.2rem 1.3rem; }
.price-box {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 1.5rem; display: grid; gap: 0.4rem; max-width: 28rem;
}
.price-box .amount { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; }
.price-box .amount span { font-size: 1.05rem; font-weight: 700; color: var(--muted); }
.price-note { color: var(--muted); font-size: 0.92rem; }
.faq-list { display: grid; gap: 0.65rem; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0.2rem 1rem; overflow: hidden; }
.faq summary { cursor: pointer; font-weight: 700; padding: 0.9rem 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p {
  color: var(--muted);
  max-height: 0;
  opacity: 0;
  margin: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.28s ease, opacity 0.22s ease, margin 0.22s ease, transform 0.22s ease;
}
.faq[open] p {
  max-height: 16rem;
  opacity: 1;
  margin: 0 0 1rem;
  transform: translateY(0);
}
.addon-note { font-size: 0.92rem; color: var(--muted); margin-top: 1rem; }
.site-footer { background: var(--ink); color: #d8d4d0; padding: 2.2rem 0 1.6rem; }
.site-footer a { color: #fff; }
.site-footer h3 { color: #fff; }
.footer-grid { display: grid; gap: 1.2rem; }
.legal { font-size: 0.82rem; color: #9b9691; margin-top: 1.4rem; }
.example-bar {
  background: var(--rose); color: #fff; font-size: 0.88rem; font-weight: 600;
  padding: 0.55rem 0;
}
.example-bar a { color: #fff; text-decoration: underline; }
.listing-hero { padding: 1.4rem 0 0.4rem; }
.listing-hero h1 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
.place { color: var(--muted); font-weight: 600; margin-bottom: 0.7rem; }
.stats { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.8rem 0 1rem; }
.stat { background: var(--wash); border-radius: 999px; padding: 0.35rem 0.7rem; font-size: 0.85rem; font-weight: 600; }
.hero-photo { border-radius: var(--photo-radius); overflow: hidden; margin: 1rem 0; }
.hero-photo img { width: 100%; height: min(52vw, 420px); object-fit: cover; }
.photo-grid { display: grid; gap: 0.7rem; }
.photo-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--photo-radius); }
.facts { display: grid; gap: 0.9rem; }
.kv { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.kv span { color: var(--muted); }
.rules li { list-style: none; padding: 0.35rem 0 0.35rem 1.3rem; position: relative; }
.rules li::before { content: ""; position: absolute; left: 0; top: 0.7rem; width: 8px; height: 8px; border-radius: 50%; background: var(--rose); }
.avail-layout { display: grid; gap: 1rem; }
.cal-card, .book-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.1rem; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; }
.cal-head h3 { margin: 0; font-size: 1.05rem; }
.cal-nav { display: flex; gap: 0.35rem; }
.cal-nav button {
  width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; font-size: 1.1rem; cursor: pointer;
}
.cal-week, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.cal-week span { font-size: 0.72rem; font-weight: 700; color: var(--muted); padding: 0.2rem 0; }
.cal-day {
  aspect-ratio: 1; border-radius: 10px; display: grid; place-items: center;
  font-size: 0.82rem; font-weight: 600; background: #fff;
}
.cal-day.is-muted { color: #c5c0bb; }
.cal-day.is-busy, .cal-day.is-past { background: #eeeae6; color: #9a9590; text-decoration: line-through; }
.cal-day.is-today { box-shadow: inset 0 0 0 2px var(--rose); }
.cal-legend { display: flex; flex-wrap: wrap; gap: 0.8rem; font-size: 0.78rem; color: var(--muted); margin-top: 0.7rem; }
.cal-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 0.3rem; vertical-align: -1px; }
.swatch-busy { background: #eeeae6; }
.swatch-open { background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.swatch-today { box-shadow: inset 0 0 0 2px var(--rose); background: #fff; }
.cal-note { font-size: 0.85rem; color: var(--muted); margin: 0.6rem 0 0; }
.thanks { padding: 4rem 0 5rem; text-align: left; max-width: 36rem; }
.thanks h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
@media (min-width: 760px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; gap: 2.5rem; }
  .hero-mkt { padding: 3.4rem 0 3.6rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.three, .facts, .avail-layout, .footer-grid, .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-grid .wide { grid-column: span 2; }
  .photo-grid .wide img, .photo-grid img { height: 220px; }
  .example-card { grid-template-columns: 1.1fr 1fr; }
  .example-card img { height: 100%; min-height: 260px; }
  .fee-strip .wrap { grid-template-columns: 1.4fr 1fr; align-items: center; }
}

/* Listing form rows + thanks echo + disabled Airbnb complement */
.row2 { display: grid; gap: 0.7rem; }
.btn-airbnb:disabled,
.btn-airbnb[aria-disabled="true"] {
  opacity: 0.55; cursor: not-allowed; pointer-events: none;
}
.thanks dl { margin: 1rem 0 0; }
.thanks dt { font-size: 0.75rem; font-weight: 700; color: var(--muted); margin-top: 0.7rem; }
.thanks dd { margin: 0.15rem 0 0; font-weight: 700; }
.photo-grid { grid-template-columns: 1fr 1fr; }
.photo-grid img.wide { grid-column: 1 / -1; height: 200px; }
.book-card .btn-airbnb { margin-top: 0.5rem; }
@media (min-width: 760px) {
  .row2 { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .avail-layout { grid-template-columns: 1.2fr 0.8fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

textarea { min-height: 5.5rem; resize: vertical; }
.example-bar .wrap { font-size: 0.86rem; }
.listing-hero.wrap { padding-top: 1.6rem; }


/* How it works */
.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}
.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.2rem;
  position: relative;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}
.steps h3 { font-size: 1.08rem; margin-bottom: 0.35rem; }
.steps p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Guarantee */
.guarantee {
  background: var(--rose-soft);
  color: var(--ink);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  margin: 0.4rem 0 0.9rem;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
}
@media (max-width: 759px) {
  .sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 60;
    background: var(--rose);
    color: #fff !important;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.95rem 1rem;
    box-shadow: 0 10px 30px rgba(227, 28, 95, 0.35);
  }
  .sticky-cta:hover { color: #fff !important; text-decoration: none; background: var(--rose-dark); }
  .sticky-cta.is-hidden { display: none; }
  body { padding-bottom: 5.5rem; }
  .nav-cta { font-size: 0.82rem; padding: 0.5rem 0.7rem; }
}

@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; position: relative; }
  .steps li + li::before {
    content: "";
    position: absolute;
    top: 1.15rem;
    left: -0.7rem;
    width: 0.7rem;
    height: 2px;
    background: var(--line);
  }
  .example-layout { grid-template-columns: 1.2fr 0.8fr; gap: 2rem; }
  .phone-bezel { width: 240px; }
  .phone-screen img { height: 190px; }
}

.hp { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }

.footer-brand { display: inline-flex; line-height: 0; text-decoration: none; }
.footer-brand img { height: 36px; width: auto; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.article-page .narrow { width: min(720px, 100%); }
.article-page h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.03em; margin: 0 0 1rem; }
.lead-answer {
  background: #fff5f8;
  border: 1px solid #f3c5d3;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  margin: 0 0 1.5rem;
  color: var(--ink);
  line-height: 1.55;
}
.geo-faq-index { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1.1rem; }
.geo-faq-index li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}
.geo-faq-index a { color: var(--ink); text-decoration: none; }
.geo-faq-index a:hover { color: var(--rose); }
.geo-faq-index p { margin: 0.45rem 0 0; font-size: 0.95rem; }
.article-page ul, .article-page ol { margin: 0.8rem 0 1.2rem; padding-left: 1.2rem; }
.article-page li { margin: 0.35rem 0; }
