* { box-sizing: border-box; margin: 0; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #f4f4f2;
  color: #222;
  line-height: 1.55;
}

.hero {
  position: relative;
  min-height: 34vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--accent) center/cover no-repeat;
  color: #fff;
  padding: 1rem;
}

.hero h1 {
  font-size: 1.9rem;
  letter-spacing: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .55);
}

.lang-switch {
  position: absolute;
  top: .8rem;
  right: .8rem;
  display: flex;
  gap: .4rem;
}

.lang-switch a {
  color: #fff;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
}

.lang-switch a.active {
  background: #fff;
  color: var(--accent);
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

.card h2 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: .6rem;
  letter-spacing: 0;
}

.section-body :is(p, ul, ol) { margin-bottom: .7rem; }
.section-body a { color: var(--accent); }

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.fact {
  display: flex;
  flex-direction: column;
}

.fact-wide { flex-basis: 100%; }

.fact-label {
  font-size: .75rem;
  text-transform: uppercase;
  color: #777;
}

.fact-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.fact a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.wifi dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .35rem .9rem;
  align-items: center;
}

.wifi dt {
  color: #777;
  font-size: .85rem;
}

.wifi code {
  background: #f0f0ee;
  padding: .2rem .5rem;
  border-radius: 6px;
  font-size: 1.05rem;
}

.copy-btn,
.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  padding: .45rem .8rem;
  border-radius: 8px;
  margin-left: .4rem;
}

.btn-wa { background: #25d366; }

.wifi-qr summary {
  margin-top: .7rem;
  color: var(--accent);
  cursor: pointer;
}

.qr-box {
  max-width: 220px;
  margin: .6rem auto;
}

.qr-box svg {
  width: 100%;
  height: auto;
  display: block;
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  padding: .55rem 0;
  border-top: 1px solid #eee;
}

.contact:first-of-type { border-top: 0; }

.contact-role {
  display: block;
  font-size: .8rem;
  color: #777;
}

#map {
  height: 320px;
  border-radius: 8px;
  margin-bottom: .8rem;
}

.pin-list { list-style: none; }

.pin-list li {
  padding: .3rem 0;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.pin-list a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.pin-cat {
  font-size: .8rem;
  color: #777;
}

footer {
  text-align: center;
  color: #999;
  padding: 1.5rem 0 2.5rem;
  font-size: .85rem;
}

@media (min-width: 700px) {
  .hero h1 { font-size: 2.4rem; }
}

@media print {
  .lang-switch,
  .copy-btn { display: none; }
}
