* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  background: #18181B;
  color: #FAFAFA;
  min-height: 100vh;
  padding: 48px 16px;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 640px;
}

/* Profile Header */
.profile {
  text-align: center;
  margin-bottom: 36px;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 2px solid #27272A;
}

.profile h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #FAFAFA;
}

.tagline {
  font-size: 15px;
  color: #A1A1AA;
  line-height: 1.5;
}

.tagline a {
  color: #A1A1AA;
  border-bottom: 1px solid #52525B;
  transition: color 0.15s, border-color 0.15s;
}

.tagline a:hover {
  color: #FAFAFA;
  border-color: #FAFAFA;
}

.site-links {
  margin-top: 12px;
  font-size: 13px;
  color: #71717A;
}

.site-links a {
  color: #A1A1AA;
  transition: color 0.15s;
}

.site-links a:hover {
  color: #FAFAFA;
}

.site-links span {
  margin: 0 8px;
  color: #52525B;
}

/* Bio */
.bio {
  margin-bottom: 40px;
  line-height: 1.7;
}

.bio p {
  font-size: 15px;
  color: #A1A1AA;
  margin-bottom: 12px;
}

.bio p:last-child {
  margin-bottom: 0;
}

.bio a {
  color: #A1A1AA;
  border-bottom: 1px solid #52525B;
  transition: color 0.15s, border-color 0.15s;
}

.bio a:hover {
  color: #FAFAFA;
  border-color: #FAFAFA;
}

/* Card Sections */
.card-section {
  margin-bottom: 40px;
}

.card-section h2 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #71717A;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #27272A;
}

.section-note {
  font-size: 14px;
  color: #71717A;
  margin-bottom: 16px;
  line-height: 1.5;
}

.section-note a {
  color: #A1A1AA;
  border-bottom: 1px solid #3F3F46;
  transition: color 0.15s, border-color 0.15s;
}

.section-note a:hover {
  color: #FAFAFA;
  border-color: #FAFAFA;
}

/* Writing Cards */
.card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card {
  display: block;
  padding: 14px 16px;
  background: #27272A;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}

.card:hover {
  background: #3F3F46;
  border-color: #52525B;
}

.card-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #FAFAFA;
  margin-bottom: 3px;
}

.card-desc {
  display: block;
  font-size: 13px;
  color: #A1A1AA;
  line-height: 1.5;
}

/* Reading List */
.reading-group {
  margin-bottom: 20px;
}

.reading-group:last-child {
  margin-bottom: 0;
}

.reading-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #52525B;
  margin-bottom: 6px;
}

.reading-list {
  display: flex;
  flex-direction: column;
}

.book {
  font-size: 15px;
  color: #FAFAFA;
  padding: 7px 0;
  border-bottom: 1px solid #1F1F23;
}

.book:last-child {
  border-bottom: none;
}

.book em {
  font-style: italic;
}

.author {
  color: #52525B;
  font-size: 14px;
}

/* Text Block (Golf, etc.) */
.text-block {
  font-size: 15px;
  color: #A1A1AA;
  line-height: 1.7;
}

.text-block a {
  color: #A1A1AA;
  border-bottom: 1px solid #52525B;
  transition: color 0.15s, border-color 0.15s;
}

.text-block a:hover {
  color: #FAFAFA;
  border-color: #FAFAFA;
}

/* Road Trip Route */
.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.stop {
  font-size: 13px;
  color: #A1A1AA;
  padding: 5px 12px;
  background: #27272A;
  border-radius: 20px;
  white-space: nowrap;
}

/* Map */
#roadtrip-map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  margin: 16px 0;
  border: 1px solid #27272A;
}

.map-tooltip {
  background: #27272A;
  color: #FAFAFA;
  border: 1px solid #3F3F46;
  border-radius: 6px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.map-tooltip::before {
  border-top-color: #3F3F46;
}

.leaflet-control-zoom a {
  background: #27272A !important;
  color: #A1A1AA !important;
  border-color: #3F3F46 !important;
}

.leaflet-control-zoom a:hover {
  background: #3F3F46 !important;
  color: #FAFAFA !important;
}

.leaflet-control-attribution {
  background: rgba(24, 24, 27, 0.8) !important;
  color: #52525B !important;
  font-size: 10px !important;
}

.leaflet-control-attribution a {
  color: #71717A !important;
}

.cta-note {
  font-size: 14px;
  color: #52525B;
  font-style: italic;
  margin-top: 8px;
}

.cta-note a {
  color: #71717A;
  border-bottom: 1px solid #3F3F46;
  transition: color 0.15s, border-color 0.15s;
}

.cta-note a:hover {
  color: #FAFAFA;
  border-color: #FAFAFA;
}

/* Footer */
footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid #27272A;
  color: #52525B;
  font-size: 13px;
}
