
:root { --maxw: 860px; --fg: #111; --muted:#555; --brand:#0f766e; }
* { box-sizing: border-box; }
html { font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: var(--fg); }
body { margin: 0; }
header { border-bottom: 1px solid #eee; }
.nav { max-width: var(--maxw); margin: 0 auto; padding: 14px 18px; display: flex; gap: 16px; align-items: center; }
.nav a { text-decoration: none; color: var(--brand); font-weight: 600; }
main { max-width: var(--maxw); margin: 0 auto; padding: 24px 18px 64px; }
h1,h2,h3 { line-height: 1.2; }
h1 { font-size: clamp(24px, 3vw, 32px); margin: 18px 0 6px; }
h2 { font-size: clamp(20px, 2.2vw, 26px); margin-top: 28px; }
summary { cursor: pointer; font-weight: 600; }
details { border: 1px solid #eee; border-radius: 10px; padding: 12px 14px; margin: 12px 0; background: #fafafa; }
.lead { color: var(--muted); }
.cta { display: inline-block; padding: 10px 14px; background: var(--brand); color: #fff; border-radius: 10px; text-decoration: none; }
footer { border-top: 1px solid #eee; padding: 24px 18px; color: var(--muted); font-size: 14px; }
ul { padding-left: 20px; }
code { background:#f2f2f2; padding:2px 6px; border-radius:6px; }




/* 3-card responsive gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* always 3 */
  gap: 16px;
}

.gallery-card {
  text-decoration: none;
  color: inherit;
}

.gallery figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(0,0,0,.06);
}

.gallery figcaption {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.3;
}

.gallery figcaption span {
  color: var(--muted);
  font-weight: 600;
}

.gallery img {
  width: 100%;
  height: 200px;       /* adjust this number to control uniform height */
  object-fit: cover;   /* crops edges but keeps proportions */
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(0,0,0,.06);
}




.logo {
  height: 40px;        /* controls logo size */
  width: auto;         /* keeps proportions */
  display: block;
}

.logo-link {
  margin-right: 16px;  /* space between logo and next link */
}




.map-embed {
  position: relative;
  padding-bottom: 56.25%;  /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(0,0,0,.06);
  margin: 10px 0 6px;
}
.map-embed iframe {
  position: absolute;
  inset: 0;               /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  border: 0;
}
.map-caption {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin: 6px 0 16px;
}
