:root {
  --bg: #FFFFFF;
  --bg-section: #F5F5F7;
  --text: #111111;
  --text-muted: #4B5563;
  --border: #E5E7EB;
  --accent: #D4AF37;
  --btn-hover: #2C2C2C;
  --danger: #B91C1C;
  --danger-bg: #FEF2F2;
  --success: #15803D;
  --success-bg: #F0FDF4;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.04);
  --shadow-md: 0 6px 24px rgba(17, 17, 17, 0.05);
  --font-heading: "Satoshi", "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); line-height: 1.05; font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.25; }

p { margin: 0 0 1em; color: var(--text-muted); }
p strong { color: var(--text); font-weight: 600; }

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

/* ---------- Layout ---------- */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

/* ---------- Header ---------- */

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 24px;
  font-family: var(--font-heading);
}

/* Real logo image (replaces the placeholder brand-mark + text when the PNG is present) */
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
.site-footer .brand-logo { filter: invert(1); } /* white version on dark footer */

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.unit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-section);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.unit-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--text);
  color: #fff;
  padding: 56px 0 36px;
  margin-top: 96px;
}

/* On phones + tablets, the huge margin-top leaves the area above the footer
   looking empty — tighten it up so the page feels more finished. */
@media (max-width: 900px) {
  .site-footer { margin-top: 20px; padding: 32px 0 24px; }
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand .brand { color: #fff; }
.footer-brand .brand-mark { background: #fff; color: var(--text); }
.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s ease;
}

.social-icon:hover { background: rgba(255, 255, 255, 0.2); }
.social-icon svg { width: 16px; height: 16px; fill: currentColor; }

.footer-legal {
  width: 100%;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer-legal a { color: rgba(255, 255, 255, 0.7); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.05s ease;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--text);
  color: #fff;
}

.btn-primary:hover { background: var(--btn-hover); }

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--text);
}

.btn-secondary:hover { background: var(--bg-section); }

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-danger:hover { background: #991B1B; }

.btn-success {
  background: var(--success);
  color: #fff;
}

.btn-success:hover { background: #166534; }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 28px; font-size: 16px; }

/* ---------- Cards / Panels ---------- */

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.card + .card { margin-top: 20px; }

/* On phones the card can feel edge-to-edge — bump the horizontal padding so
   inputs have visible breathing room from the card border. */
@media (max-width: 640px) {
  .card { padding: 24px 20px; }
  .container { padding: 0 16px; }
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.card-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 20px;
}

/* ---------- Forms ---------- */

.field { margin-bottom: 22px; }
/* Inside a .field-row the grid gap already handles vertical spacing when it
   stacks on mobile — kill the extra margin-bottom so paired fields spacing
   matches standalone fields. */
.field-row .field { margin-bottom: 0; }

.field-row {
  display: grid;
  /* minmax(0, 1fr) is critical here: iOS Safari's native date input has a
     large min-content width from its calendar icon; without minmax(0, ...)
     the grid columns balloon and the inputs overflow the card border. */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 22px;
}

/* Only stack on phones — iPad keeps them side-by-side (narrower, which the
   client explicitly wanted) but with the wider gap they no longer touch. */
@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* Date inputs render taller AND wider than text inputs on iOS Safari because
   of the native calendar picker chrome. Strip the -webkit-appearance so it
   uses our custom padding cleanly and doesn't overflow its grid cell. */
input.input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 44px;
  max-width: 100%;
}

label.field-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0;
}

.field-label .req { color: var(--danger); margin-left: 2px; }

.input, .select, .textarea {
  width: 100%;
  min-width: 0; /* prevents date inputs from overflowing their grid cell on tablets */
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.textarea { resize: vertical; min-height: 90px; }

.select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23111' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* Checkbox */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  cursor: pointer;
  margin-top: 8px; /* extra breathing room from the field/row above so it doesn't feel crammed */
}

.checkbox-row input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--text);
  flex-shrink: 0;
}

.checkbox-row .label-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.checkbox-row .label-text a { color: var(--text); }

/* Summary block */
.summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
}

.summary-row .k { color: var(--text-muted); }
.summary-row .v { color: var(--text); font-family: var(--font-heading); font-weight: 600; }

.summary-hold {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  padding-top: 6px;
}

.summary-hold .k { color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.summary-hold .k::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.summary-hold .v { color: var(--text); font-family: var(--font-heading); font-weight: 600; }

.summary-hold-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: -2px 0 4px 12px;
  font-style: italic;
}

.summary-total {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
  font-weight: 600;
}

.summary-total .k { font-size: 13px; }
.summary-total .v {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Trust indicators — small pill row under CTA */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0 0;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
}

.trust-pill svg { width: 12px; height: 12px; stroke: var(--text); stroke-width: 2.5; }

/* Custom hotel picker (native <select> can't show images) */
.hotel-picker {
  position: relative;
}

.hotel-picker-trigger {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  transition: border-color 0.15s ease;
}

.hotel-picker-trigger:hover { border-color: var(--text); }

.hotel-picker-trigger .placeholder { color: var(--text-muted); }
.hotel-picker-trigger .selected { display: flex; align-items: center; gap: 10px; }
.hotel-picker-trigger .caret {
  color: var(--text-muted);
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.hotel-picker.open .hotel-picker-trigger { border-color: var(--text); box-shadow: 0 0 0 3px rgba(17,17,17,0.08); }
.hotel-picker.open .caret { transform: rotate(180deg); }

.hotel-picker-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 30;
  padding: 6px;
  max-height: 280px;
  overflow-y: auto;
}

.hotel-picker.open .hotel-picker-menu { display: block; }

.hotel-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
}

.hotel-option:hover { background: var(--bg-section); }
.hotel-option.selected { background: var(--bg-section); font-weight: 600; }

.hotel-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.02em;
  overflow: hidden;
}

.hotel-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* Searchable hotel dropdown (clean, no logos) */
.search-select {
  position: relative;
}

.search-select-input {
  width: 100%;
  padding: 12px 40px 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  cursor: text;
}

.search-select-input::placeholder { color: var(--text-muted); }

.search-select-input:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.search-select-caret {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

.search-select-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 30;
  max-height: 280px;
  overflow-y: auto;
  padding: 4px;
}

.search-select.open .search-select-menu { display: block; }

.search-option {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
}

.search-option:hover, .search-option.highlight { background: var(--bg-section); }
.search-option.selected { font-weight: 600; background: var(--bg-section); }

.search-option-empty {
  padding: 14px 12px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

/* Order summary — very light gray + subtle shadow (premium tech feel) */
.summary-card {
  background: #FAFAFB;
  border-color: #E5E7EB;
  box-shadow: 0 2px 12px rgba(17, 17, 17, 0.04);
}

.summary-card .card-title { color: var(--text); }
.summary-card .summary { background: #fff; }

/* Modal (for T&Cs) */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.6);
  z-index: 100;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}

.modal-backdrop.open { display: flex; }

.modal {
  background: #fff;
  max-width: 620px;
  width: 100%;
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 0;
  border-radius: 6px;
}

.modal-close:hover { background: var(--bg-section); color: var(--text); }
.modal-close svg { width: 20px; height: 20px; stroke: currentColor; }

.modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 14px;
  padding-right: 30px;
}

.modal-body {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
}

.modal-body p { color: var(--text); margin: 0 0 12px; }
.modal-body ul { padding-left: 20px; margin: 0 0 12px; }

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Return checklist — tighter spacing */
.checklist-row.compact { padding: 10px 20px; }
.checklist-row.compact .item-icon { width: 34px; height: 34px; }
.checklist-row.compact .item-icon svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .checklist-row.compact { padding: 12px 16px; }
}

/* Photo upload (return page — Phase 2 add-on, hidden until purchased) */
.photo-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 20px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg-section);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  text-align: center;
}

.photo-upload:hover {
  border-color: var(--text);
  background: #F1F2F4;
}

.photo-upload input[type="file"] { display: none; }

.photo-upload-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.photo-upload-icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; }

.photo-upload-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.photo-upload-hint {
  font-size: 12px;
  color: var(--text-muted);
}

.photo-preview {
  display: none;
  margin-top: 10px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.photo-preview.show { display: flex; }

.photo-preview img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.photo-preview .filename {
  flex: 1;
  font-size: 13px;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-preview .remove {
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--text-muted);
  border-radius: 6px;
  line-height: 0;
}

.photo-preview .remove:hover { background: var(--bg-section); color: var(--danger); }
.photo-preview .remove svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; fill: none; }

/* Progress indicator */
.progress-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin: 12px 0 0;
}

.progress-strip .progress-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.progress-strip .progress-bar {
  flex: 1;
  height: 6px;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  max-width: 200px;
}

.progress-strip .progress-fill {
  height: 100%;
  background: var(--success);
  border-radius: 999px;
  transition: width 0.25s ease;
}

/* Success confirmation state */
.confirmation-state {
  display: none;
  padding: 40px 32px;
  text-align: center;
  background: var(--success-bg);
  border: 1px solid #BBF7D0;
  border-radius: var(--radius);
  margin: 32px 0;
}

.confirmation-state.show { display: block; }

.confirmation-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}

.confirmation-icon svg { width: 30px; height: 30px; stroke: currentColor; stroke-width: 3; fill: none; }

.confirmation-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--success);
  margin: 0 0 8px;
}

.confirmation-body {
  color: #166534;
  font-size: 15px;
  margin: 0 0 20px;
}

/* ---------- Hero (rental page top) ---------- */

.hero {
  padding: 24px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero h1 { margin-bottom: 14px; }
.hero .lead {
  font-size: 18.5px;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 22px;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

/* Hero image carousel (swipe on touch, dots to navigate, auto-cycle) */
.hero-carousel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  background: var(--bg-section);
  user-select: none;
  touch-action: pan-y;
  margin: 22px 0 32px;
}

.hero-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.hero-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(17, 17, 17, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.hero-carousel-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.hero-carousel-dot:hover { background: rgba(255, 255, 255, 0.85); }

/* Single-column hero stack (text -> image -> setup link -> includes -> badges) */
.hero-stack {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.hero-stack h1 { margin-bottom: 14px; }
.hero-stack .lead { margin-left: 0; margin-right: 0; max-width: 60ch; }
.hero-stack .hero-visual {
  margin: 22px 0 20px;
  max-width: 100%;
}
.hero-setup-link {
  margin: 0 0 24px;
  font-size: 14.5px;
}
.hero-setup-link a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-skip-ink: none;
}
.hero-setup-link span { color: var(--text-muted); }

.hero-includes { margin-top: 4px; }
.includes-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.hero-includes .hero-badges {
  justify-content: flex-start;
  margin-top: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

/* ---------- Rental form section ---------- */

.rental-section {
  padding: 20px 0 60px;
}

/* Mobile/tablet override — placed after the base rule so source order wins */
@media (max-width: 900px) {
  .rental-section { padding: 20px 0 9px; }
}

.rental-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .rental-grid { grid-template-columns: 1fr; }
}

.rental-sidebar { position: sticky; top: 90px; }

@media (max-width: 900px) {
  .rental-sidebar { position: static; }
}

/* ---------- Return page checklist ---------- */

.return-header {
  padding: 32px 0 16px;
  border-bottom: 1px solid var(--border);
}

.return-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 6px;
}

.return-header .unit-line {
  font-size: 15px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
}

.return-header .unit-line strong {
  color: var(--text);
  font-weight: 700;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 20px 0 0;
}

.info-cell {
  padding: 12px 14px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.info-cell .k {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 4px;
}

.info-cell .v {
  font-size: 15px;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Checklist */

.checklist {
  margin: 24px 0 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.checklist-head {
  display: grid;
  grid-template-columns: 1fr repeat(3, 90px);
  padding: 12px 20px;
  background: var(--text);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checklist-head span { text-align: center; }
.checklist-head span:first-child { text-align: left; }

.checklist-row {
  display: grid;
  grid-template-columns: 1fr repeat(3, 90px);
  align-items: center;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}

.checklist-row:first-of-type { border-top: none; }

.item-name {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.item-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  flex-shrink: 0;
}

.item-icon svg { width: 20px; height: 20px; fill: currentColor; }

.check-cell {
  display: flex;
  justify-content: center;
  align-items: center;
}

.check-cell input[type="checkbox"] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: var(--text);
}

.check-cell.missing input[type="checkbox"] {
  accent-color: var(--danger);
}

@media (max-width: 640px) {
  .checklist-head { display: none; }

  .checklist-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 16px;
  }

  .check-cell {
    justify-content: flex-start;
  }

  .check-cell::before {
    content: attr(data-label);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-right: 12px;
    min-width: 100px;
  }
}

/* Action bar (sticky bottom on mobile) */
.action-bar {
  display: flex;
  gap: 12px;
  padding: 20px 0 0;
  flex-wrap: wrap;
}

.action-bar .btn { flex: 1; min-width: 180px; }

/* When a note sits directly after a card (e.g. "Need help?" below the Pay
   button card in the sidebar), give it explicit breathing room from the card. */
.card + .note { margin-top: 20px; }

/* Alerts / notes */
.note {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  border: 1px solid var(--border);
  background: var(--bg-section);
  color: var(--text-muted);
  margin-bottom: 16px;
}

.note strong { color: var(--text); }
.note a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-skip-ink: none;
}
.note a:hover { text-decoration-thickness: 2px; }

.note.success {
  background: var(--success-bg);
  border-color: #BBF7D0;
  color: var(--success);
}

/* Toast (click-to-copy feedback for mailto: links) */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 20px;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
  max-width: 90vw;
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.note.warn {
  background: #FFFBEB;
  border-color: #FDE68A;
  color: #92400E;
}

/* Section headers */
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 12px;
}

.section-title h2 {
  font-size: 18px;
  margin: 0;
}

.section-title .count {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bg-section);
  border: 1px solid var(--border);
}
