/* ============================================
   MEET ME THERE — v5
   Cormorant Garamond · Courier Prime · Pinyon Script
   Oxblood · Olive · Ivory
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600;1,700&family=Pinyon+Script&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --ox:          #42010F;
  --ox-deep:     #2E000A;
  --ox-mid:      #520115;
  --olive:       #3D4A1A;
  --olive-light: #506222;
  --olive-glow:  rgba(61,74,26,0.55);
  --ivory:       #F2EDE0;
  --ivory-mid:   rgba(242,237,224,0.58);
  --ivory-faint: rgba(242,237,224,0.11);
  --ivory-ghost: rgba(242,237,224,0.06);
  --line:        rgba(242,237,224,0.13);
  --line-mid:    rgba(242,237,224,0.25);
  --line-bold:   rgba(242,237,224,0.42);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.splash {
  background: var(--ox);
  color: var(--ivory);
  font-family: 'Courier Prime', 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Cpath d='M3 11L11 4.5l8 6.5' fill='none' stroke='%23F2EDE0' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.5 10V18h11V10' fill='none' stroke='%23F2EDE0' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 18v-4.5h4V18' fill='none' stroke='%23F2EDE0' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 4 2, auto;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: inherit; border: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--olive); color: var(--ivory); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 1px solid var(--ivory-mid); outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================
   Background grid — fine survey paper
   ============================================ */
.blueprint {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--ivory-faint) 1px, transparent 1px),
    linear-gradient(90deg, var(--ivory-faint) 1px, transparent 1px),
    linear-gradient(45deg, var(--ivory-ghost) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px, 32px 32px;
}

.coord {
  position: fixed;
  font-family: 'Courier Prime', monospace;
  font-size: 0.57rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ivory-mid); z-index: 2; line-height: 1.6;
}
.coord.tl { top: 18px; left: 22px; }
.coord.tr { top: 18px; right: 22px; text-align: right; }
.coord.bl { bottom: 18px; left: 22px; }
.coord.br { bottom: 18px; right: 22px; text-align: right; }
@media (max-width: 700px) { .coord { display: none; } }

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: var(--ivory);
  margin: 0;
  letter-spacing: 0.01em;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--ivory);
}
@media (max-width: 440px) {
  .brand-name { font-size: clamp(2.4rem, 10vw, 3.2rem); }
}

.script {
  font-family: 'Pinyon Script', cursive;
  font-size: 2em;
  color: var(--ivory-mid);
  line-height: 1;
  display: block;
  margin: 4px 0 22px;
  letter-spacing: 0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-mid);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--line-bold); flex-shrink: 0;
}

.body-copy {
  font-family: 'Courier Prime', monospace;
  font-size: 0.88rem;
  color: var(--ivory-mid);
  max-width: 56ch;
  line-height: 1.9;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--line-bold);
  padding: 13px 28px;
  background: transparent; color: var(--ivory);
  transition: all 0.2s ease; white-space: nowrap;
}
.btn:hover { background: var(--ivory-ghost); border-color: var(--ivory); }

.btn-primary {
  background: var(--olive);
  color: var(--ox);
  border-color: var(--olive);
  font-weight: 700;
  color: #42010F;
}
.btn-primary:hover { background: var(--olive-light); border-color: var(--olive-light); }

/* ============================================
   Nav
   ============================================ */
.splash-nav {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 44px;
  border-bottom: 1px solid var(--line);
}

.splash-logo {
  font-family: 'Courier Prime', monospace;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ivory-mid);
}

.splash-nav-links { display: flex; align-items: center; gap: 44px; }
.splash-nav-links a {
  font-family: 'Courier Prime', monospace;
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory-mid); transition: color 0.15s;
  padding: 3px 0; border-bottom: 1px solid transparent;
}
.splash-nav-links a:hover { color: var(--ivory); border-bottom-color: var(--line-mid); }

.splash-mobile-toggle {
  display: none;
  width: 34px; height: 34px; align-items: center; justify-content: center;
  border: 1px solid var(--line-mid) !important;
  background: transparent; color: var(--ivory);
}
@media (max-width: 760px) {
  .splash-nav { padding: 18px 24px; }
  .splash-nav-links { display: none; }
  .splash-mobile-toggle { display: flex; }
  .splash-nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--ox-deep); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; z-index: 20;
  }
  .splash-nav-links.open a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line) !important; }
}

/* ============================================
   Hero
   ============================================ */
.hero-centered {
  position: relative; z-index: 5;
  min-height: calc(100vh - 61px - 88px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 28px 80px;
}
.hero-centered .eyebrow { justify-content: center; }
.hero-cta-row {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 52px;
}
.hero-meta-row {
  display: flex; align-items: center; gap: 22px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory-mid);
}
.hero-meta-row .sep { width: 1px; height: 10px; background: var(--line-mid); }

/* ============================================
   Cities — horizontal, centered, olive dots
   ============================================ */
.cities-section {
  position: relative; z-index: 5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 44px;
}
.cities-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  max-width: 900px;
  margin: 0 auto;
}
.strip-label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ivory-mid); width: 100%; text-align: center;
  margin-bottom: 12px;
}
.city-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--ivory-mid); letter-spacing: 0.04em;
}
.city-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--olive-light);
  box-shadow: 0 0 0 2px rgba(80,98,34,0.35);
  animation: citypulse 2.8s ease-in-out infinite;
  flex-shrink: 0;
}
.city-item:nth-child(2) .city-dot { animation-delay: 0.4s; }
.city-item:nth-child(3) .city-dot { animation-delay: 0.8s; }
.city-item:nth-child(4) .city-dot { animation-delay: 1.2s; }
.city-item:nth-child(5) .city-dot { animation-delay: 1.6s; }
.city-item:nth-child(6) .city-dot { animation-delay: 2.0s; }
.city-item:nth-child(7) .city-dot { animation-delay: 2.4s; }
.city-item:nth-child(8) .city-dot { animation-delay: 2.8s; }
@keyframes citypulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(80,98,34,0.35); }
  50%       { box-shadow: 0 0 0 5px rgba(80,98,34,0.12); }
}
@media (max-width: 760px) { .cities-section { padding: 20px 24px; } }

/* ============================================
   Sections
   ============================================ */
.splash-section {
  position: relative; z-index: 5;
  padding: 80px 44px;
  border-bottom: 1px solid var(--line);
}
.splash-section-inner { max-width: 1080px; margin: 0 auto; }
.splash-section .eyebrow { margin-bottom: 14px; }
.splash-section h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.05; margin-bottom: 28px;
}
@media (max-width: 760px) { .splash-section { padding: 60px 24px; } }

/* 2×2 grid for About Us */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 48px;
}
.about-cell {
  padding: 32px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-cell .cell-icon {
  width: 24px; height: 24px;
  color: var(--ivory);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.about-cell h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--ivory);
}
.about-cell p {
  font-family: 'Courier Prime', monospace;
  font-size: 0.82rem; color: var(--ivory-mid); line-height: 1.8;
}
@media (max-width: 640px) { .about-grid { grid-template-columns: 1fr; } }

/* No payment box */
.no-payment-box {
  margin-top: 40px;
  border: 1px solid var(--line-mid);
  padding: 28px 32px;
  display: flex; align-items: flex-start; gap: 22px;
  background: var(--ivory-ghost);
}
.no-payment-box .overline {
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--olive-light); display: block; margin-bottom: 6px;
}
.np-icon { width: 22px; height: 22px; color: var(--ivory-mid); flex-shrink: 0; margin-top: 18px; }
.np-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--ivory); margin-bottom: 6px; }
.np-copy { font-family: 'Courier Prime', monospace; font-size: 0.82rem; color: var(--ivory-mid); line-height: 1.8; }

/* ============================================
   Join section
   ============================================ */
.join-card {
  margin-top: 44px;
  border: 1px solid var(--line-mid);
  padding: 36px 40px;
  max-width: 540px;
  background: var(--ivory-ghost);
}
.join-label {
  display: block; font-family: 'Courier Prime', monospace;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory-mid); margin-bottom: 8px;
}
.join-input {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--line-mid);
  color: var(--ivory); padding: 10px 0;
  font-family: 'Courier Prime', monospace; font-size: 0.92rem;
  margin-bottom: 22px; transition: border-color 0.15s;
}
.join-input:focus { outline: none; border-bottom-color: var(--ivory); }
.join-input::placeholder { color: var(--ivory-mid); opacity: 0.45; }

.join-note {
  border-top: 1px solid var(--line); margin-top: 20px; padding-top: 16px;
  font-family: 'Courier Prime', monospace; font-size: 0.76rem;
  color: var(--ivory-mid); line-height: 1.7; font-style: italic;
}
.join-note strong { color: var(--ivory); font-style: normal; }

.join-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.no-code-line {
  margin-top: 14px; font-family: 'Courier Prime', monospace;
  font-size: 0.7rem; color: var(--ivory-mid); font-style: italic;
}
.no-code-line a {
  color: var(--ivory); border-bottom: 1px solid var(--line-mid); transition: border-color 0.15s;
}
.no-code-line a:hover { border-bottom-color: var(--ivory); }

/* ============================================
   Footer
   ============================================ */
.splash-footer {
  position: relative; z-index: 5;
  background: var(--ox-deep); border-top: 1px solid var(--line);
  padding: 26px 44px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Courier Prime', monospace;
  font-size: 0.62rem; letter-spacing: 0.1em; color: var(--ivory-mid);
  flex-wrap: wrap; gap: 10px;
}
.splash-footer a:hover { color: var(--ivory); }
@media (max-width: 760px) { .splash-footer { padding: 20px 24px; flex-direction: column; } }

/* ============================================
   No-referral page
   ============================================ */
.noreferral-shell {
  position: relative; z-index: 5;
  min-height: calc(100vh - 61px);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 28px;
}
.noreferral-card {
  max-width: 500px; width: 100%;
  border: 1px solid var(--line-mid); padding: 60px 48px;
  background: var(--ivory-ghost);
}
.noreferral-card h1 { font-size: clamp(1.8rem,4vw,2.6rem); margin: 14px 0 18px; }
.noreferral-card p {
  font-family: 'Courier Prime', monospace; font-size: 0.86rem;
  color: var(--ivory-mid); line-height: 1.85; margin-bottom: 10px;
}
.noreferral-card .btn { width: 100%; justify-content: center; margin-top: 26px; }
@media (max-width: 560px) { .noreferral-card { padding: 38px 26px; } }

/* ============================================
   Signup page
   ============================================ */
.signup-shell { position: relative; z-index: 5; padding: 56px 44px 100px; }
@media (max-width: 760px) { .signup-shell { padding: 36px 24px 80px; } }
.signup-wrap { max-width: 700px; margin: 0 auto; }

.step-rail {
  display: flex; border-bottom: 1px solid var(--line); margin-bottom: 40px;
  overflow-x: auto;
}
.step-item {
  flex: 1; min-width: 80px; padding-bottom: 13px;
  border-bottom: 1px solid transparent;
  font-family: 'Courier Prime', monospace;
  font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ivory-mid); display: flex; flex-direction: column; gap: 4px;
}
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-weight: 700; color: var(--line-bold); }
.step-item.active { color: var(--ivory); border-bottom-color: var(--ivory); }
.step-item.active .step-num { color: var(--ivory); }
.step-item.done .step-num { color: var(--olive-light); }

.signup-card {
  border: 1px solid var(--line-mid); padding: 44px;
  background: var(--ivory-ghost);
}
@media (max-width: 600px) { .signup-card { padding: 26px 20px; } }

.step-panel { display: none; }
.step-panel.active { display: block; }
.step-panel[data-panel="done"] { text-align: center; padding: 20px 0; }

.signup-eyebrow {
  display: block; font-family: 'Courier Prime', monospace;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ivory-mid); margin-bottom: 8px;
}
.signup-heading {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: clamp(1.8rem,4vw,2.6rem); color: var(--ivory); margin-bottom: 8px;
}
.signup-sub {
  font-family: 'Courier Prime', monospace; font-size: 0.82rem;
  color: var(--ivory-mid); line-height: 1.75; margin-bottom: 26px;
}

.field-label {
  display: block; font-family: 'Courier Prime', monospace;
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory-mid); margin-bottom: 8px; margin-top: 22px;
}
.field-label:first-of-type { margin-top: 0; }
.field-note {
  display: block; font-family: 'Courier Prime', monospace;
  font-size: 0.66rem; color: var(--ivory-mid); opacity: 0.6;
  margin-top: 5px; font-style: italic;
}
.field-input {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--line-mid);
  color: var(--ivory); padding: 10px 0;
  font-family: 'Courier Prime', monospace; font-size: 0.9rem;
  resize: vertical; transition: border-color 0.15s;
}
.field-input:focus { outline: none; border-bottom-color: var(--ivory); }
.field-input::placeholder { color: var(--ivory-mid); opacity: 0.45; }
select.field-input option { background: var(--ox); color: var(--ivory); }
textarea.field-input { border: 1px solid var(--line-mid); padding: 10px 12px; margin-top: 4px; }
textarea.field-input:focus { border-color: var(--ivory-mid); }

.field-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 560px) { .field-row-two { grid-template-columns: 1fr; } }

.tag-select { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tag-opt {
  background: transparent; border: 1px solid var(--line);
  color: var(--ivory-mid); padding: 6px 13px;
  font-family: 'Courier Prime', monospace; font-size: 0.72rem;
  transition: all 0.15s;
}
.tag-opt:hover, .tag-opt.active {
  border-color: var(--ivory-mid); color: var(--ivory); background: var(--ivory-ghost);
}

.tot-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid var(--line); gap: 14px;
}
.tot-row:first-of-type { padding-top: 0; }
.tot-label { font-family: 'Courier Prime', monospace; font-size: 0.76rem; color: var(--ivory-mid); width: 105px; flex-shrink: 0; }
.tot-toggle { display: flex; border: 1px solid var(--line); flex: 1; max-width: 280px; }
.tot-opt {
  flex: 1; background: transparent; border: none;
  padding: 8px 10px; font-family: 'Courier Prime', monospace;
  font-size: 0.72rem; color: var(--ivory-mid); transition: all 0.15s;
}
.tot-opt:first-child { border-right: 1px solid var(--line); }
.tot-opt.active { background: var(--olive); color: var(--ivory); }

.style-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.style-opt {
  border: 1px solid var(--line); padding: 13px 15px;
  display: flex; align-items: center; gap: 10px; cursor: pointer; transition: all 0.15s;
}
.style-opt:has(input:checked) { border-color: var(--ivory-mid); background: var(--ivory-ghost); }
.style-opt input { accent-color: var(--olive-light); }
.style-name { font-family: 'Courier Prime', monospace; font-size: 0.8rem; color: var(--ivory); }
@media (max-width: 500px) { .style-grid { grid-template-columns: 1fr; } }

/* Photo upload area */
.photo-upload-area {
  border: 1px dashed var(--line-mid);
  padding: 28px 20px;
  text-align: center;
  margin-top: 4px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.photo-upload-area:hover { border-color: var(--ivory-mid); }
.photo-upload-area p {
  font-family: 'Courier Prime', monospace; font-size: 0.76rem;
  color: var(--ivory-mid); line-height: 1.7;
}
.photo-upload-area .upload-count {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  font-weight: 700; color: var(--olive-light); display: block; margin-bottom: 6px;
}

.host-note {
  border: 1px solid var(--line); padding: 16px 20px; margin-top: 24px;
  font-family: 'Courier Prime', monospace; font-size: 0.76rem;
  color: var(--ivory-mid); line-height: 1.7; font-style: italic;
  background: var(--ivory-ghost);
}
.host-note strong { color: var(--ivory); font-style: normal; }

.step-nav {
  display: flex; justify-content: space-between;
  margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line);
}

/* Step tag inside about/feature cells */
.cell-tag {
  font-family: "Courier Prime", monospace;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--olive-light); margin-bottom: 2px; display: block;
}

/* About grid — 2 col, 5th cell full width */
.about-grid-wrap .about-cell:last-child {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
}
.about-grid-wrap .about-cell:last-child .cell-text { flex: 1; }
.about-grid-wrap .about-cell:last-child .cell-icon { margin-top: 4px; flex-shrink: 0; }

/* Disclaimer checkboxes */
.disclaimer-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.disclaimer-box:last-of-type { border-bottom: none; }
.disclaimer-box input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 3px; flex-shrink: 0;
  accent-color: var(--olive-light);
  cursor: pointer;
}
.disclaimer-box label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.78rem; color: var(--ivory-mid);
  line-height: 1.7; cursor: pointer;
}
.disclaimer-box label strong { color: var(--ivory); font-style: normal; }

.disclaimer-section {
  border: 1px solid var(--line-mid);
  padding: 20px 22px;
  margin-top: 24px;
  background: var(--ivory-ghost);
}

/* Validation errors */
.validation-errors {
  background: rgba(193,83,46,0.12);
  border: 1px solid rgba(193,83,46,0.4);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.validation-errors p {
  font-family: 'Courier Prime', monospace;
  font-size: 0.78rem;
  color: #F2EDE0;
  line-height: 1.7;
  opacity: 0.85;
}
