:root{
  --max: 720px;
  --pad: 16px;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  background: #f6f6f7;
  color: #111;
}

a{ color: inherit; }

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

.hero {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.hero-image{
  width:100%;
  height:100%;
  object-fit: cover;
}

.hero-overlay{
  position: absolute;
  bottom: -15px;
  left: 20px;
  color: rgb(255, 255, 255);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.nav {
  display: flex;
  justify-content: space-around;
  padding: 12px;
  background: white;
  border-bottom: 1px solid #eee;
}

.eyebrow{
  margin: 0 0 8px;
  opacity: .75;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
}

.headline{
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
}

.sub{
  margin-top: 0;
  font-size: x-small;
  opacity: .85;
}

.actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.map-buttons{
  display: flex;
  gap: 12px;
}

.map-buttons .btn{
  flex: 1;
}

.btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.btn.primary{
  background: #fff;
  color: #111;
  border-color: #fff;
}

.btn-navigation{
  text-align: center;
}

.card{
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  margin: 14px 0;
}

.card-link{
  text-decoration: none;
}

h2{
  margin: 0 0 0;
  font-size: 1.2rem;
}

.list .row{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid #eee;
}
.list .row:first-child{ border-top: 0; }
.label{ color: #666; font-size: .95rem; }
.value a{ text-decoration: underline; }

.timeline{
  margin: 0;
  padding-left: 18px;
}
.timeline li{ margin: 8px 0; }

details{
  border-top: 1px solid #eee;
  padding: 10px 0;
}
details:first-of-type{ border-top: 0; }
summary{
  cursor: pointer;
  font-weight: 600;
}
details p{
  margin: 8px 0 0;
  color: #333;
}

.footer{
  padding: 28px 0 40px;
  color: #666;
  text-align: center;
}

/* Desktop-Enhancements */
@media (min-width: 768px){
  :root{ --pad: 24px; }
  .headline{ font-size: 2.4rem; }
  .actions{ grid-template-columns: auto auto; justify-content: start; }
}