@font-face {
  font-family: "Manrope";
  src: url("manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --stone: #f3f0ea;
  --stone-2: #e9e3da;
  --ink: #172033;
  --muted: #687083;
  --blue: #1746d1;
  --blue-dark: #1038b2;
  --blue-soft: #eef2ff;
  --terracotta: #c96b4b;
  --green: #3f7c38;
  --red: #b63d3d;
  --white: #fff;
  --line: #dedbd5;
  --shadow: 0 20px 55px rgba(23, 32, 51, 0.12);
  --shadow-sm: 0 10px 30px rgba(23, 32, 51, 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

p {
  color: var(--muted);
  line-height: 1.7;
}

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

.shell {
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(243, 240, 234, 0.94);
  border-bottom: 1px solid rgba(23, 32, 51, 0.07);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

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

.wordmark {
  align-items: center;
  display: inline-flex;
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.052em;
}

.wordmark img {
  margin-right: 10px;
}

.wordmark > span > span {
  color: var(--blue);
  font-weight: 800;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 650;
  padding: 12px 0;
  position: relative;
}

.desktop-nav a::after {
  background: var(--blue);
  bottom: 5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-nav,
.menu-button {
  display: none;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 750;
  gap: 9px;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  transition: background 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(23, 70, 209, 0.2);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-dark);
}

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

.button-dark:hover {
  background: var(--blue);
}

.button-outline {
  background: transparent;
  border-color: rgba(23, 70, 209, 0.55);
  color: var(--blue);
}

.button-outline:hover {
  background: var(--blue-soft);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-white {
  background: var(--white);
  color: var(--blue);
}

.button-white:hover {
  background: var(--blue-soft);
}

.button-danger {
  background: #fff3f3;
  border-color: #e4b2b2;
  color: var(--red);
}

.button-full {
  width: 100%;
}

.button-small {
  min-height: 42px;
  padding: 0 15px;
}

.button-large {
  min-height: 58px;
  padding-left: 28px;
  padding-right: 28px;
}

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

.hero::before {
  background: radial-gradient(circle, rgba(201, 107, 75, 0.14), transparent 68%);
  content: "";
  height: 520px;
  left: -220px;
  position: absolute;
  top: -140px;
  width: 520px;
}

.hero-grid {
  display: grid;
  gap: 58px;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 520px;
}

.hero-copy {
  align-self: center;
  padding-bottom: 78px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  color: var(--terracotta);
  display: inline-block;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  border: 1px solid rgba(201, 107, 75, 0.48);
  border-radius: 999px;
  letter-spacing: 0;
  padding: 10px 14px;
  text-transform: none;
}

.hero h1,
.page-hero h1,
.form-intro h1 {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.03;
}

.hero h1 {
  margin: 28px 0 20px;
}

.hero h1 span {
  display: block;
}

.hero-copy > p {
  color: #485166;
  font-size: 18px;
  margin: 0;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hero-trust {
  color: #566073;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 650;
  gap: 18px;
  margin-top: 26px;
}

.hero-collage {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.22fr 0.78fr;
  grid-template-rows: 1fr 0.92fr;
  min-height: 500px;
  position: relative;
}

.hero-collage > img {
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  width: 100%;
}

.hero-main {
  border-radius: 28px 8px 8px 28px;
  grid-row: 1 / 3;
}

.hero-collage > img:nth-of-type(2) {
  border-radius: 8px 28px 8px 8px;
}

.hero-collage > img:nth-of-type(3) {
  border-radius: 8px 8px 28px 8px;
}

.hero-chip {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  display: flex;
  font-size: 12px;
  font-weight: 750;
  left: -22px;
  padding: 12px 15px;
  position: absolute;
  top: 52%;
}

.hero-chip-two {
  bottom: 58px;
  left: -3px;
  top: auto;
}

.search-panel {
  align-items: end;
  background: var(--white);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.9fr 0.9fr auto;
  margin-top: -38px;
  padding: 20px;
  position: relative;
  z-index: 3;
}

.search-panel label {
  display: grid;
  gap: 7px;
}

.search-panel label span {
  color: #596276;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.search-panel input {
  background: #faf9f7;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 48px;
  outline: 0;
  padding: 0 14px;
}

.search-panel input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 70, 209, 0.09);
}

.trust-bar {
  padding: 74px 0 20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  border-right: 1px solid var(--line);
  display: grid;
  gap: 5px;
  padding: 14px 28px;
  text-align: center;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong {
  font-size: 23px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 100px 0;
}

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

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

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

.section h2,
.section-head h2,
.center-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.052em;
  line-height: 1.08;
  margin: 12px 0 0;
}

.text-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}

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

.listing-card {
  background: var(--white);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(23, 32, 51, 0.05);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.listing-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.listing-image {
  background: var(--stone-2);
  display: block;
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

.listing-card:hover .listing-image img {
  transform: scale(1.03);
}

.listing-type {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-size: 11px;
  font-weight: 760;
  left: 14px;
  padding: 7px 10px;
  position: absolute;
  top: 14px;
}

.listing-card-body {
  padding: 22px;
}

.listing-location {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
}

.listing-card h3 {
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1.3;
  margin: 9px 0 15px;
}

.listing-facts {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  gap: 7px;
}

.listing-facts span {
  background: #f7f5f1;
  border-radius: 7px;
  padding: 7px 9px;
}

.listing-card-bottom {
  align-items: end;
  border-top: 1px solid #ece8e1;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 18px;
}

.listing-card-bottom > div {
  display: grid;
  gap: 2px;
}

.listing-card-bottom strong {
  font-size: 19px;
}

.listing-card-bottom small {
  color: var(--muted);
  font-size: 10px;
}

.empty-showcase {
  align-items: center;
  background: var(--white);
  border: 1px dashed #c7c0b6;
  border-radius: 22px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding: 48px;
}

.empty-showcase h3 {
  font-size: 30px;
  letter-spacing: -0.04em;
  margin: 10px 0;
}

.empty-showcase p {
  margin-bottom: 0;
  max-width: 720px;
}

.center-heading {
  margin: 0 auto 50px;
  max-width: 700px;
  text-align: center;
}

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

.steps-grid article {
  border-left: 1px solid var(--line);
  padding: 8px 28px 8px 30px;
}

.steps-grid article > span {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
}

.steps-grid h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 20px 0 10px;
}

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

.split-visual {
  align-items: flex-start;
  background: linear-gradient(150deg, #1746d1, #102763);
  border-radius: 28px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 520px;
  overflow: hidden;
  padding: 50px;
  position: relative;
}

.split-visual::before,
.split-visual::after {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  height: 360px;
  position: absolute;
  right: -70px;
  top: -100px;
  width: 360px;
}

.split-visual::after {
  height: 250px;
  right: 75px;
  top: 80px;
  width: 250px;
}

.split-visual span {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
  opacity: 0.8;
  position: relative;
}

.split-visual strong {
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1.06;
  position: relative;
}

.split-copy h2 {
  margin: 13px 0 22px;
}

.check-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 28px 0 34px;
  padding: 0;
}

.check-list li {
  font-size: 14px;
  font-weight: 650;
}

.check-list li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
  margin-right: 10px;
}

.dark-cta {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.dark-cta h2 {
  color: var(--white);
  margin-top: 10px;
}

.dark-cta p {
  color: #bfc7d9;
  margin-bottom: 0;
}

.kicker-light {
  color: #f09a7d;
}

.page-main {
  min-height: 65vh;
}

.page-hero {
  background: linear-gradient(180deg, var(--stone), #ebe5dc);
  padding: 100px 0 110px;
  text-align: center;
}

.page-hero .shell {
  max-width: 940px;
}

.page-hero h1 {
  margin: 18px 0;
}

.page-hero p {
  font-size: 18px;
  margin: 0 auto;
  max-width: 720px;
}

.compact-hero {
  padding-bottom: 70px;
}

.compact-hero h1 {
  font-size: clamp(46px, 5vw, 66px);
}

.results-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 270px 1fr;
  padding-bottom: 100px;
  padding-top: 42px;
}

.filter-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  position: sticky;
  top: 104px;
}

.filter-panel h2 {
  font-size: 19px;
  margin: 0 0 20px;
}

.filter-panel form {
  display: grid;
  gap: 13px;
}

.filter-help {
  background: var(--blue-soft);
  border-radius: 12px;
  margin-top: 22px;
  padding: 17px;
}

.filter-help strong,
.filter-help p,
.filter-help a {
  font-size: 12px;
}

.filter-help p {
  margin: 7px 0;
}

.filter-help a {
  color: var(--blue);
  font-weight: 750;
}

.results-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.results-top strong {
  font-size: 22px;
}

.results-top span {
  color: var(--muted);
  font-size: 12px;
}

.results-content .listing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.empty-state {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 70px 30px;
  text-align: center;
}

.empty-icon {
  align-items: center;
  background: var(--blue-soft);
  border-radius: 50%;
  color: var(--blue);
  display: inline-flex;
  font-size: 30px;
  height: 68px;
  justify-content: center;
  width: 68px;
}

.empty-state h2 {
  font-size: 30px;
  letter-spacing: -0.04em;
  margin: 20px 0 10px;
}

.empty-state p {
  margin: 0 auto 26px;
  max-width: 520px;
}

.detail-grid {
  align-items: start;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 370px;
  padding-bottom: 110px;
  padding-top: 45px;
}

.back-link {
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.detail-image {
  background: var(--stone-2);
  border-radius: 24px;
  height: 560px;
  overflow: hidden;
}

.detail-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.detail-content {
  padding: 42px 15px 0;
}

.detail-content h1 {
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1.08;
  margin: 12px 0 20px;
}

.detail-description {
  font-size: 16px;
  max-width: 760px;
}

.detail-content h2 {
  font-size: 24px;
  margin: 42px 0 20px;
}

.amenity-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.amenity-grid span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 650;
  padding: 15px;
}

.safety-note {
  background: #eef7eb;
  border: 1px solid #c9dec0;
  border-radius: 14px;
  margin-top: 32px;
  padding: 20px;
}

.safety-note p {
  font-size: 13px;
  margin: 6px 0 0;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 28px;
  position: sticky;
  top: 110px;
}

.booking-card .listing-type {
  left: auto;
  position: static;
  top: auto;
}

.booking-price {
  display: grid;
  margin: 26px 0;
}

.booking-price strong {
  font-size: 32px;
  letter-spacing: -0.04em;
}

.booking-price span {
  color: var(--muted);
  font-size: 12px;
}

.booking-facts {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  margin-bottom: 25px;
  padding: 20px 0;
}

.booking-facts > div {
  display: flex;
  font-size: 12px;
  justify-content: space-between;
}

.booking-facts span {
  color: var(--muted);
}

.booking-card small {
  color: var(--muted);
  display: block;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 14px;
  text-align: center;
}

.form-intro {
  background: linear-gradient(145deg, #102a75, #1746d1);
  color: var(--white);
  padding: 86px 0 130px;
}

.form-intro-host {
  background: linear-gradient(145deg, #18373a, #295c55);
}

.form-intro-grid {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: 1.4fr 0.6fr;
}

.form-intro h1 {
  font-size: clamp(48px, 5vw, 68px);
  margin: 20px 0;
}

.form-intro p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  max-width: 700px;
}

.intro-points {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  gap: 22px;
  padding: 12px 0 12px 30px;
}

.intro-points span {
  color: rgba(255, 255, 255, 0.6);
  display: grid;
  font-size: 12px;
  gap: 5px;
}

.intro-points strong {
  color: var(--white);
  font-size: 14px;
}

.form-shell {
  margin-top: -70px;
  padding-bottom: 110px;
  position: relative;
}

.pro-form {
  background: var(--white);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 950px;
  padding: 46px;
}

.form-section {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  margin: 10px 0 28px;
  padding-bottom: 23px;
}

.form-section:not(:first-of-type) {
  margin-top: 48px;
}

.form-step {
  align-items: center;
  background: var(--blue);
  border-radius: 10px;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.form-section h2 {
  font-size: 23px;
  letter-spacing: -0.03em;
  margin: 2px 0 4px;
}

.form-section p {
  font-size: 12px;
  margin: 0;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field > span,
.upload-field > span {
  color: #50596b;
  font-size: 12px;
  font-weight: 720;
}

.form-field input,
.form-field select,
.form-field textarea,
.inline-form select {
  background: #fbfaf8;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 50px;
  outline: 0;
  padding: 0 14px;
  width: 100%;
}

.form-field textarea {
  line-height: 1.6;
  padding-bottom: 13px;
  padding-top: 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 70, 209, 0.09);
}

.form-field-full {
  margin-top: 18px;
}

.checkbox-fieldset {
  border: 0;
  margin: 27px 0;
  padding: 0;
}

.checkbox-fieldset legend {
  color: #50596b;
  font-size: 12px;
  font-weight: 720;
  margin-bottom: 10px;
}

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

.checkbox-grid label {
  position: relative;
}

.checkbox-grid input {
  opacity: 0;
  position: absolute;
}

.checkbox-grid span {
  background: #fbfaf8;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: block;
  font-size: 12px;
  font-weight: 650;
  padding: 14px;
  text-align: center;
}

.checkbox-grid input:checked + span {
  background: var(--blue-soft);
  border-color: var(--blue);
  color: var(--blue);
}

.upload-field {
  background: #f8f6f2;
  border: 1px dashed #bfb8ae;
  border-radius: 12px;
  display: grid;
  gap: 8px;
  margin: 25px 0;
  padding: 22px;
}

.upload-field small {
  color: var(--muted);
  font-size: 10px;
}

.consent {
  align-items: start;
  display: flex;
  gap: 10px;
  margin: 28px 0;
}

.consent input {
  accent-color: var(--blue);
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.consent span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.consent a {
  color: var(--blue);
  text-decoration: underline;
}

.hp-field {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.booking-layout {
  align-items: start;
  display: grid;
  gap: 45px;
  grid-template-columns: 0.75fr 1.25fr;
  padding-bottom: 110px;
  padding-top: 60px;
}

.booking-summary {
  position: sticky;
  top: 105px;
}

.booking-summary > img {
  border-radius: 20px;
  height: 300px;
  margin-bottom: 25px;
  object-fit: cover;
  width: 100%;
}

.booking-summary .kicker {
  margin-top: 10px;
}

.booking-summary h1 {
  font-size: 36px;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 10px 0;
}

.summary-price {
  align-items: baseline;
  display: flex;
  gap: 7px;
  margin: 20px 0;
}

.summary-price strong {
  font-size: 25px;
}

.summary-price span {
  color: var(--muted);
  font-size: 11px;
}

.fee-explainer {
  background: var(--blue-soft);
  border-radius: 13px;
  padding: 18px;
}

.fee-explainer p {
  font-size: 11px;
  margin: 5px 0 0;
}

.compact-form {
  padding: 38px;
}

.compact-form h2 {
  font-size: 30px;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
}

.compact-form > p {
  font-size: 13px;
  margin: 0 0 25px;
}

.match-hero {
  padding: 70px 0;
}

.match-hero h1 {
  font-size: clamp(42px, 5vw, 62px);
}

.success-mark {
  align-items: center;
  background: #edf7e9;
  border: 1px solid #c8dfbf;
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  font-size: 25px;
  font-weight: 900;
  height: 62px;
  justify-content: center;
  margin-bottom: 20px;
  width: 62px;
}

.centered-page {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 80px 25px 110px;
}

.success-card,
.decision-card,
.payment-card,
.admin-login-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  max-width: 680px;
  padding: 50px;
  text-align: center;
  width: 100%;
}

.success-card h1,
.decision-card h1,
.payment-card h1,
.admin-login-card h1 {
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -0.052em;
  line-height: 1.1;
  margin: 14px 0;
}

.success-card > p,
.decision-card > p,
.payment-card > p {
  margin: 0 auto 28px;
  max-width: 540px;
}

.status-box {
  align-items: center;
  background: #f8f6f2;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  margin: 24px auto;
  max-width: 400px;
  padding: 15px 18px;
}

.status-box span {
  color: var(--muted);
  font-size: 12px;
}

.error-mark {
  align-items: center;
  background: #fff2f2;
  border-radius: 50%;
  color: var(--red);
  display: inline-flex;
  font-size: 22px;
  font-weight: 850;
  height: 64px;
  justify-content: center;
  margin-bottom: 20px;
  width: 64px;
}

.decision-details {
  background: #f8f6f2;
  border-radius: 15px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  margin: 30px 0;
  overflow: hidden;
}

.decision-details > div {
  background: var(--white);
  display: grid;
  gap: 5px;
  padding: 18px;
}

.decision-details span {
  color: var(--muted);
  font-size: 10px;
}

.decision-details strong {
  font-size: 13px;
}

.decision-card blockquote {
  background: #f8f6f2;
  border-left: 3px solid var(--terracotta);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 25px 0;
  padding: 18px;
  text-align: left;
}

.decision-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.price-lines {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

.price-lines > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
}

.price-lines span {
  color: var(--muted);
  font-size: 12px;
}

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

.fee-line strong {
  color: var(--blue);
  font-size: 21px;
}

.notice {
  background: var(--blue-soft);
  border: 1px solid #ced7fa;
  border-radius: 13px;
  margin: 22px 0;
  padding: 20px;
  text-align: left;
}

.notice p {
  font-size: 12px;
  margin: 6px 0 0;
}

.notice-warning {
  background: #fff8ec;
  border-color: #ead7ae;
}

.notice-success {
  background: #eef8eb;
  border-color: #c9dfc1;
}

.secure-note {
  color: var(--muted);
  display: block;
  font-size: 10px;
  margin-top: 13px;
}

.status-pill {
  background: #f1f1f1;
  border-radius: 999px;
  display: inline-flex;
  font-size: 10px;
  font-weight: 750;
  padding: 7px 10px;
}

.status-active,
.status-paid {
  background: #edf7e9;
  color: var(--green);
}

.status-pending_host,
.status-payment_pending,
.status-pending_review,
.status-pending_verification {
  background: #fff6e5;
  color: #8a631e;
}

.status-declined,
.status-rejected,
.status-cancelled {
  background: #fff0f0;
  color: var(--red);
}

.admin-login-card {
  max-width: 480px;
}

.admin-login-card > img {
  margin: 0 auto 18px;
}

.admin-login-card form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  text-align: left;
}

.admin-main {
  min-height: 75vh;
  padding: 55px 0 100px;
}

.admin-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.admin-head h1 {
  font-size: 43px;
  letter-spacing: -0.05em;
  margin: 8px 0 0;
}

.admin-tabs {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 30px;
  margin-top: 38px;
  overflow-x: auto;
}

.admin-tabs a {
  border-bottom: 2px solid transparent;
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  padding: 0 3px 15px;
}

.admin-tabs a.active {
  border-bottom-color: var(--blue);
  color: var(--blue);
}

.admin-content {
  padding-top: 28px;
}

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

.stat-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.stat-grid span {
  color: var(--muted);
  font-size: 11px;
}

.stat-grid strong {
  font-size: 30px;
  letter-spacing: -0.04em;
}

.admin-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-top: 22px;
  overflow: hidden;
  padding: 24px;
}

.panel-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.panel-head h2 {
  font-size: 20px;
  margin: 0;
}

.panel-head span,
.panel-head p {
  color: var(--muted);
  font-size: 11px;
  margin: 4px 0 0;
}

.activity-list {
  display: grid;
}

.activity-list > div {
  align-items: center;
  border-top: 1px solid #ece8e1;
  display: grid;
  gap: 12px;
  grid-template-columns: 80px 1fr auto 90px;
  padding: 15px 0;
}

.activity-kind {
  color: var(--muted);
  font-size: 10px;
}

.activity-list strong {
  font-size: 13px;
}

.activity-list small {
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table-wrap table {
  border-collapse: collapse;
  min-width: 900px;
  width: 100%;
}

.admin-table-wrap th {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 12px;
  text-align: left;
  text-transform: uppercase;
}

.admin-table-wrap td {
  border-top: 1px solid #ece8e1;
  font-size: 12px;
  padding: 15px 12px;
  vertical-align: middle;
}

.admin-table-wrap td strong,
.admin-table-wrap td small {
  display: block;
}

.admin-table-wrap td small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 5px;
}

.inline-form {
  align-items: center;
  display: flex;
  gap: 6px;
}

.inline-form .hp-field,
.inline-form input[type="hidden"] {
  display: none;
}

.inline-form select {
  min-height: 36px;
  padding: 0 8px;
  width: 150px;
}

.inline-form button {
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  font-size: 10px;
  min-height: 36px;
  padding: 0 10px;
}

.admin-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.admin-edit-link {
  border: 1px solid rgba(23, 70, 209, 0.35);
  border-radius: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  padding: 9px 11px;
}

.danger-panel {
  border-color: #e4b2b2;
  margin-top: 22px;
}

.danger-panel .button {
  margin-top: 18px;
}

.table-empty {
  color: var(--muted);
  padding: 35px;
  text-align: center;
}

.settings-grid {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.4fr 0.6fr;
}

.settings-grid .admin-panel {
  margin-top: 0;
  margin-bottom: 22px;
}

.settings-form .button {
  margin-top: 20px;
}

.settings-subhead {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 28px;
}

.webhook-box code {
  background: #f3f1ed;
  border-radius: 8px;
  display: block;
  font-size: 10px;
  overflow-wrap: anywhere;
  padding: 12px;
}

.webhook-box p {
  font-size: 11px;
}

.legal-page {
  padding: 90px 0 120px;
}

.legal-shell {
  max-width: 850px;
}

.legal-nav {
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
  padding-bottom: 18px;
}

.legal-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  padding: 9px 14px;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.legal-shell h1 {
  font-size: clamp(46px, 6vw, 68px);
  letter-spacing: -0.06em;
  margin: 15px 0 25px;
}

.legal-lead {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px !important;
  line-height: 1.7;
  margin: 0 0 50px;
  padding-bottom: 35px;
}

.legal-shell h2 {
  font-size: 23px;
  letter-spacing: -0.03em;
  margin: 38px 0 8px;
}

.legal-shell p {
  font-size: 15px;
}

.legal-shell li {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-shell a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-table-wrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 20px 0 35px;
  overflow-x: auto;
}

.legal-table {
  border-collapse: collapse;
  min-width: 620px;
  width: 100%;
}

.legal-table th,
.legal-table td {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.55;
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #f5f3ef;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

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

.company-facts {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 28px 0 42px;
  overflow: hidden;
}

.company-facts > div {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 25px;
  grid-template-columns: 220px 1fr;
  padding: 17px 20px;
}

.company-facts > div:last-child {
  border-bottom: 0;
}

.company-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-facts dd {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.legal-missing {
  color: #8a5a05;
}

.legal-launch-warning code {
  background: rgba(255, 255, 255, .6);
  border-radius: 5px;
  padding: 2px 5px;
}

.timeline {
  max-width: 900px;
}

.timeline article {
  border-left: 1px solid #cfc8be;
  display: grid;
  gap: 30px;
  grid-template-columns: 70px 1fr;
  padding: 5px 0 55px 35px;
  position: relative;
}

.timeline article::before {
  background: var(--blue);
  border: 6px solid var(--stone);
  border-radius: 50%;
  content: "";
  height: 18px;
  left: -10px;
  position: absolute;
  top: 2px;
  width: 18px;
}

.timeline article > span {
  color: var(--terracotta);
  font-weight: 800;
}

.timeline h2 {
  font-size: 29px;
  margin: 0 0 10px;
}

.timeline p {
  margin: 0;
}

.flash-wrap {
  left: 50%;
  pointer-events: none;
  position: fixed;
  top: 96px;
  transform: translateX(-50%);
  z-index: 100;
}

.flash {
  border: 1px solid;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 650;
  margin: 0 auto 8px;
  max-width: 680px;
  padding: 15px 18px;
  pointer-events: auto;
}

.flash-success {
  background: #eff8ec;
  border-color: #bcd8b1;
  color: #35652f;
}

.flash-error {
  background: #fff0f0;
  border-color: #e1b1b1;
  color: #973636;
}

.flash-warning {
  background: #fff8e9;
  border-color: #e5cf9f;
  color: #7c5a1f;
}

.site-footer {
  background: #10182a;
  color: var(--white);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.7fr repeat(3, 1fr);
}

.footer-wordmark {
  margin-bottom: 18px;
}

.footer-grid p,
.footer-grid a {
  color: #9fa8ba;
  display: block;
  font-size: 12px;
  line-height: 1.7;
  margin: 0 0 8px;
}

.footer-grid h3 {
  font-size: 12px;
  margin: 4px 0 18px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7f899b;
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 22px;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a:nth-last-child(1) {
    display: none;
  }

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

  .hero h1 {
    font-size: 55px;
  }

  .search-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .search-panel .button {
    grid-column: 1 / -1;
  }

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

  .split-grid {
    gap: 45px;
  }

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

@media (max-width: 820px) {
  .shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-shell {
    height: 72px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    background: transparent;
    border: 0;
    display: grid;
    gap: 5px;
    padding: 10px;
  }

  .menu-button span {
    background: var(--ink);
    height: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
    width: 23px;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    background: var(--stone);
    border-top: 1px solid var(--line);
    display: none;
    gap: 0;
    padding: 12px 20px 22px;
  }

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav > a:not(.button) {
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 650;
    padding: 15px 0;
  }

  .mobile-nav .button {
    margin-top: 16px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid,
  .split-grid,
  .form-intro-grid,
  .booking-layout,
  .detail-grid,
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 64px);
  }

  .hero-collage {
    min-height: 430px;
  }

  .search-panel {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }

  .search-panel label:first-of-type {
    grid-column: 1 / -1;
  }

  .trust-bar {
    padding-top: 38px;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 75px 0;
  }

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

  .steps-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 25px 0;
  }

  .split-visual {
    min-height: 400px;
  }

  .dark-cta {
    align-items: start;
    flex-direction: column;
    gap: 28px;
  }

  .results-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .booking-card,
  .booking-summary {
    position: static;
  }

  .filter-panel form {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-panel .button,
  .filter-help {
    grid-column: 1 / -1;
  }

  .detail-grid {
    gap: 25px;
  }

  .detail-image {
    height: 470px;
  }

  .booking-card {
    grid-row: 1;
  }

  .form-intro {
    padding-bottom: 115px;
  }

  .intro-points {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    grid-template-columns: repeat(3, 1fr);
    padding: 25px 0 0;
  }

  .booking-summary {
    display: grid;
  }

  .booking-summary > img {
    height: 380px;
  }

  .booking-summary .fee-explainer {
    margin-bottom: 20px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .legal-page {
    padding: 55px 0 85px;
  }

  .legal-nav {
    gap: 6px;
    margin-bottom: 32px;
  }

  .legal-nav a {
    font-size: 10px;
    padding: 8px 10px;
  }

  .legal-shell h1 {
    font-size: 42px;
  }

  .legal-lead {
    font-size: 16px !important;
  }

  .company-facts > div {
    gap: 7px;
    grid-template-columns: 1fr;
  }

  .wordmark {
    font-size: 20px;
  }

  .wordmark img {
    height: 37px;
    width: 37px;
  }

  .hero h1,
  .page-hero h1,
  .form-intro h1 {
    font-size: 43px;
  }

  .hero-copy > p,
  .page-hero p {
    font-size: 15px;
  }

  .hero-collage {
    gap: 8px;
    min-height: 340px;
  }

  .hero-main {
    border-radius: 18px 6px 6px 18px;
  }

  .hero-collage > img:nth-of-type(2) {
    border-radius: 6px 18px 6px 6px;
  }

  .hero-collage > img:nth-of-type(3) {
    border-radius: 6px 6px 18px 6px;
  }

  .hero-chip {
    display: none;
  }

  .search-panel,
  .search-panel label:first-of-type,
  .filter-panel form,
  .listing-grid,
  .results-content .listing-grid,
  .form-grid,
  .checkbox-grid,
  .amenity-grid,
  .decision-details,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .search-panel label:first-of-type,
  .search-panel .button,
  .filter-panel .button,
  .filter-help {
    grid-column: auto;
  }

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

  .trust-grid > div {
    padding: 14px 10px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .listing-image {
    height: 220px;
  }

  .empty-showcase {
    align-items: start;
    flex-direction: column;
    padding: 30px;
  }

  .split-visual {
    min-height: 330px;
    padding: 30px;
  }

  .page-hero {
    padding: 70px 0;
  }

  .detail-image {
    height: 340px;
  }

  .detail-content {
    padding: 30px 0 0;
  }

  .form-intro {
    padding: 62px 0 108px;
  }

  .form-intro-grid {
    gap: 30px;
  }

  .intro-points {
    grid-template-columns: 1fr;
  }

  .form-shell {
    margin-top: -60px;
  }

  .pro-form {
    border-radius: 18px;
    padding: 25px 20px;
  }

  .form-section {
    gap: 12px;
  }

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

  .booking-summary > img {
    height: 280px;
  }

  .success-card,
  .decision-card,
  .payment-card,
  .admin-login-card {
    padding: 35px 22px;
  }

  .decision-actions {
    flex-direction: column;
  }

  .activity-list > div {
    align-items: start;
    grid-template-columns: 55px 1fr;
  }

  .activity-list .status-pill,
  .activity-list small {
    grid-column: 2;
    text-align: left;
  }

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

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    gap: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
