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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #111827;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 16px 72px;
  color: #f9fafb;
}

/* ── Profile header ───────────────────────────────────── */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.profile-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.profile-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #f9fafb;
}

.profile-bio {
  font-size: 0.85rem;
  color: #9ca3af;
  text-align: center;
  max-width: 300px;
}

/* ── Social icon row ──────────────────────────────────── */
.social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}

.social-icon:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: #f9fafb;
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* ── Section title ────────────────────────────────────── */
.section-title {
  width: 100%;
  max-width: 480px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 10px;
  padding-left: 4px;
}

/* ── Link cards ───────────────────────────────────────── */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin-bottom: 24px;
}

/* ── Regular card (WhatsApp, Maps) ───────────────────── */
.card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #f9fafb;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.18s, transform 0.15s, box-shadow 0.15s;
}

.card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.card:active {
  transform: translateY(0);
}

.card svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: #f9fafb;
}

.card img.card-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.card .card-label {
  flex: 1;
  text-align: center;
}

/* colour accents */
.card.whatsapp  { border-color: rgba(37,211,102,0.35); }
.card.maps      { border-color: rgba(66,133,244,0.35); }

/* ── Airbnb listing card (with image) ────────────────── */
.listing-card {
  display: flex;
  align-items: stretch;
  border-radius: 16px;
  text-decoration: none;
  color: #f9fafb;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.18s, transform 0.15s, box-shadow 0.15s;
  min-height: 100px;
}

.listing-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.listing-card:active {
  transform: translateY(0);
}

.listing-thumb {
  width: 120px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  background: #374151;
}

/* placeholder when no image is supplied */
.listing-thumb-placeholder {
  width: 120px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.listing-info {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.listing-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f9fafb;
  line-height: 1.3;
}

.listing-sub {
  font-size: 0.78rem;
  color: #9ca3af;
}

.listing-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ff5a5f;
}

.listing-cta svg {
  width: 12px;
  height: 12px;
  fill: #ff5a5f;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  margin-top: 40px;
  font-size: 0.72rem;
  color: #4b5563;
}
