:root {
  --navy: #0b1f4a;
  --red: #c8102e;
  --paper: #f7f4ee;
  --ink: #0b1f4a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
.bar { height: 10px; background: var(--navy); }
.fence-band {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #efeae0;
  background-image: url("picket-bg.png");
  background-repeat: repeat-x;
  background-position: center 60%;
  background-size: auto 100%;
}
.fence-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(247,244,238,0.02), rgba(247,244,238,0.08) 75%, var(--paper));
  pointer-events: none;
}
.logo {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 300px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--paper);
}
main { max-width: 640px; margin: 0 auto; padding: 20px 22px 48px; }
.hero { text-align: center; }
h1 { margin-top: 6px; font-size: 2.4rem; letter-spacing: 0.02em; }
.tag { margin-top: 8px; font-size: 1.15rem; }
.place { margin-top: 6px; color: #333; }
.phone, .email {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
}
.email { font-size: 1rem; font-weight: 500; }
.marks {
  margin: 20px auto 0;
  max-width: 360px;
  display: flex;
  justify-content: space-between;
  font-family: Georgia, "Times New Roman", serif;
}
.actions { margin-top: 26px; display: flex; gap: 12px; justify-content: center; }
.btn {
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 700;
}
.btn.ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
section { margin-top: 40px; }
h2 { font-size: 1.2rem; margin-bottom: 10px; }
section p { line-height: 1.45; }
.note { margin-top: 8px; font-size: 0.92rem; color: #444; }
.photos { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.ph {
  aspect-ratio: 1;
  background: rgba(11,31,74,0.08);
  border: 1px dashed #9aa3b5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b6475;
  font-size: 0.85rem;
}
.map { width: 100%; margin-top: 14px; border: 1px solid #d5d0c6; }
.links { margin-top: 6px; }
.links a { color: var(--red); font-weight: 700; }
.links span { margin: 0 8px; color: #888; }
@media (max-width: 520px) {
  .logo { width: 220px; height: 220px; }
  .fence-band { min-height: 280px; }
  h1 { font-size: 2rem; }
  .photos { grid-template-columns: 1fr; }
}
