/* Superhost Accelerator — Airbnb Uncovered
   Warm neutral hospitality palette, one confident accent. Mobile-first. */

:root {
  --sand-50:  #FCFAF7;
  --sand-100: #F6F1EA;
  --sand-200: #EBE3D8;
  --sand-300: #DBCFBF;
  --ink:      #1E1B18;
  --ink-soft: #46403A;
  --muted:    #6E655B;
  --accent:      #0F5C55;
  --accent-deep: #0A423D;
  --accent-tint: #E6F0EE;
  --brass:    #A8763A;
  --white:    #FFFFFF;

  --wrap: 1120px;
  --narrow: 760px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(30,27,24,.05), 0 4px 12px rgba(30,27,24,.05);
  --shadow-md: 0 2px 6px rgba(30,27,24,.06), 0 18px 44px rgba(30,27,24,.09);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--sand-50);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 6.4vw, 3.9rem); }
h2 { font-size: clamp(1.65rem, 4.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.narrow { max-width: var(--narrow); margin-inline: auto; }
.center { text-align: center; }
.lede { font-size: clamp(1.05rem, 2.3vw, 1.28rem); color: var(--ink-soft); }
.eyebrow {
  font-size: .74rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 1rem;
}
.eyebrow.on-dark { color: #8FC9C1; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252,250,247,.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--sand-200);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 66px;
}
.brand {
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  color: var(--ink); text-decoration: none; letter-spacing: -.01em;
  display: flex; align-items: baseline; gap: .5rem; flex-shrink: 0;
  padding-block: 9px; /* 44px tap target without breaking baseline alignment */
}
.brand span { color: var(--muted); font-family: var(--font-body); font-size: .74rem;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: var(--ink-soft); text-decoration: none; font-size: .9rem; font-weight: 500;
  padding: 9px 12px; border-radius: 9px; white-space: nowrap;
}
.site-nav a:hover { background: var(--sand-100); color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--accent); font-weight: 600; }
.site-nav .btn-nav {
  background: var(--accent); color: #fff; padding: 9px 17px; margin-left: 6px;
}
.site-nav .btn-nav:hover { background: var(--accent-deep); color: #fff; }
/* current-page colour must not override the solid pill */
.site-nav .btn-nav[aria-current="page"] { color: #fff; }
@media (max-width: 640px) {
  .brand span { display: none; }
  .site-nav a:not(.btn-nav) { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 54px; padding: 15px 34px;
  background: var(--accent); color: #fff; text-decoration: none;
  font-family: var(--font-body); font-size: 1.02rem; font-weight: 600;
  border: none; border-radius: 999px; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: background .18s ease, transform .18s ease;
  text-align: center;
}
.btn:hover { background: var(--accent-deep); transform: translateY(-1px); color: #fff; }
.btn:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--sand-300); box-shadow: none;
}
.btn-ghost:hover { background: var(--sand-100); color: var(--accent-deep); border-color: var(--accent); }
.btn-lg { min-height: 60px; font-size: 1.08rem; padding: 18px 40px; }
.btn-block { display: flex; width: 100%; }
.cta-note { font-size: .87rem; color: var(--muted); margin-top: 1rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 9vw, 104px) 0; }
.section-tight { padding: clamp(40px, 6vw, 68px) 0; }
.section-sand { background: var(--sand-100); border-block: 1px solid var(--sand-200); }
.section-dark { background: var(--accent-deep); color: var(--sand-100); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: #CFE0DD; }

/* ---------- Hero ---------- */
.hero { padding: clamp(52px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); }
.hero h1 { margin-bottom: .38em; }
.hero .lede { max-width: 40ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }
@media (max-width: 560px) {
  .hero-ctas { display: grid; gap: 12px; }
  .hero-ctas .btn { width: 100%; }
}
.hero-grid { display: grid; gap: clamp(36px, 5vw, 60px); align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.08fr .92fr; } }

.hero-card {
  background: var(--white); border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg); padding: clamp(24px, 3.4vw, 34px);
  box-shadow: var(--shadow-md);
}
.hero-card h3 { font-size: 1.12rem; margin-bottom: 1.1rem; }
.hero-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .95rem; }
.hero-card li {
  display: grid; grid-template-columns: 22px 1fr; gap: .75rem;
  align-items: start; font-size: .96rem; color: var(--ink-soft); line-height: 1.5;
}

/* ---------- Credibility bar ---------- */
.credbar { padding: 30px 0; }
.credbar-inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 14px;
  text-align: center;
}
@media (min-width: 760px) { .credbar-inner { grid-template-columns: repeat(4, 1fr); } }
.cred-num {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  font-weight: 600; color: var(--accent); line-height: 1.1; display: block;
}
.cred-label {
  font-size: .78rem; color: var(--muted); letter-spacing: .05em;
  text-transform: uppercase; margin-top: .35rem; display: block; line-height: 1.35;
}

/* ---------- Levers ---------- */
.lever-grid { display: grid; gap: 20px; margin-top: 3rem; }
@media (min-width: 860px) { .lever-grid { grid-template-columns: repeat(3, 1fr); } }
.lever {
  background: var(--white); border: 1px solid var(--sand-200);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.lever-num {
  font-family: var(--font-display); font-size: .86rem; font-weight: 600;
  color: var(--brass); letter-spacing: .14em; text-transform: uppercase; margin-bottom: .9rem;
}
.lever h3 { margin-bottom: .55rem; }
.lever p { font-size: .96rem; color: var(--ink-soft); margin: 0; }

/* ---------- Pull quote ---------- */
.pullquote { max-width: 26ch; margin-inline: auto; }
.pullquote blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 4.2vw, 2.35rem); line-height: 1.24;
  letter-spacing: -.015em; color: var(--white); text-wrap: balance;
}
.pullquote cite {
  display: block; margin-top: 1.6rem; font-style: normal;
  font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; color: #8FC9C1;
}

/* ---------- Fit / not-fit ---------- */
.fit-grid { display: grid; gap: 20px; margin-top: 2.6rem; }
@media (min-width: 800px) { .fit-grid { grid-template-columns: 1fr 1fr; } }
.fit-card {
  border-radius: var(--radius); padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--sand-200); background: var(--white);
}
.fit-card.no { background: var(--sand-100); }
.fit-card h3 { font-size: 1.1rem; display: flex; align-items: center; gap: .6rem; margin-bottom: 1.1rem; }
.fit-list { margin: 0; padding: 0; list-style: none; display: grid; gap: .85rem; }
.fit-list li {
  display: grid; grid-template-columns: 20px 1fr; gap: .7rem; align-items: start;
  font-size: .95rem; color: var(--ink-soft); line-height: 1.5;
}
.tick { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.cross { color: var(--muted); flex-shrink: 0; margin-top: 3px; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 18px; margin-top: 2.8rem; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--white); border: 1px solid var(--sand-200);
  border-radius: var(--radius); padding: clamp(22px, 2.8vw, 30px);
}
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--accent-tint); color: var(--accent);
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; margin-bottom: 1rem;
}
.step h3 { font-size: 1.06rem; margin-bottom: .45rem; }
.step p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

/* ---------- Video ---------- */
.video-frame {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  background: linear-gradient(160deg, #123F3A, #0A2E2A);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 22px;
}
.video-frame iframe, .video-frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-placeholder { color: #BFD8D4; max-width: 40ch; }
.play-badge {
  width: 68px; height: 68px; border-radius: 999px; background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.35); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.1rem;
}
.video-placeholder strong { color: #fff; font-size: 1.02rem; display: block; margin-bottom: .4rem; }
.video-placeholder span { font-size: .87rem; line-height: 1.5; display: block; }
.placeholder-tag {
  display: inline-block; margin-top: 1rem; padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.12); color: #DDEBE9;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
/* 16:9 leaves ~186px of height on a phone — trim the placeholder so it can't clip */
@media (max-width: 640px) {
  .video-frame { padding: 14px; }
  .play-badge { width: 46px; height: 46px; margin-bottom: .55rem; }
  .play-badge svg { width: 18px; height: 18px; }
  .video-placeholder strong { font-size: .95rem; margin-bottom: .25rem; }
  .video-placeholder span:not(.placeholder-tag) { display: none; }
  .placeholder-tag { margin-top: .55rem; }
}

/* ---------- Transcript ---------- */
.transcript { margin-top: clamp(40px, 6vw, 64px); }
.transcript-block { margin-bottom: 2.4rem; }
.transcript-block:last-child { margin-bottom: 0; }
.transcript-block h3 {
  font-family: var(--font-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--brass); margin-bottom: .7rem;
}
.transcript-block p { color: var(--ink-soft); }

/* ---------- Form ---------- */
.form-card {
  background: var(--white); border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.55rem; }
.field:last-of-type { margin-bottom: 2rem; }
.field label {
  display: block; font-weight: 600; font-size: .96rem;
  color: var(--ink); margin-bottom: .2rem;
}
.field .hint { display: block; font-size: .85rem; color: var(--muted); margin-bottom: .6rem; line-height: 1.45; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 13px 15px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--sand-50); border: 1.5px solid var(--sand-300);
  border-radius: 10px; transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
}
.field textarea { min-height: 116px; resize: vertical; line-height: 1.55; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236E655B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15,92,85,.13); background: var(--white);
}
.field-row { display: grid; gap: 0; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; gap: 0 20px; } }
.form-legend {
  font-family: var(--font-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--brass);
  margin: 0 0 1.4rem; padding-top: .6rem;
}
.form-divider { border: 0; border-top: 1px solid var(--sand-200); margin: 2.2rem 0; }
.form-footnote { font-size: .85rem; color: var(--muted); margin-top: 1.1rem; text-align: center; }

/* ---------- Calendar placeholder ---------- */
.calendar-slot {
  border: 1.5px dashed var(--sand-300); border-radius: var(--radius);
  background: var(--sand-100); padding: clamp(30px, 5vw, 52px) 22px;
  text-align: center; color: var(--muted);
}
.calendar-slot strong { display: block; color: var(--ink); font-size: 1.02rem; margin-bottom: .4rem; }
.calendar-slot span { font-size: .89rem; line-height: 1.55; display: block; max-width: 44ch; margin-inline: auto; }

/* ---------- Note ---------- */
.spec-note {
  background: var(--accent-tint); border: 1px solid #C5DED9;
  border-radius: var(--radius); padding: 18px 20px;
  font-size: .88rem; color: var(--accent-deep); line-height: 1.55;
}
.spec-note strong { font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: #A69C91;
  padding: clamp(40px, 5vw, 60px) 0 30px; font-size: .89rem;
}
.footer-inner { display: grid; gap: 26px; }
@media (min-width: 760px) { .footer-inner { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.site-footer .brand { color: #fff; margin-bottom: .7rem; }
.site-footer .brand span { color: #7D7268; }
.site-footer p { color: #A69C91; max-width: 48ch; margin: 0; line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 2px 10px; margin-left: -10px; }
.footer-links a {
  color: #CFC6BB; text-decoration: none;
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 10px;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-base {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid #332E2A;
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between;
  font-size: .82rem; color: #7D7268;
}

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