/* layout: magazine */
:root {
  --accent: #1d4ed8;
  --bg: #f8fafc;
  --ink: #0f172a;
  --footer: #1e293b;
  --card: #ffffff;
  --muted: #64748b;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}
a { color: var(--accent); }
img { max-width: 100%; display: block; }
.logo { width: 48px; height: 48px; object-fit: contain; }
.btn {
  display: inline-block;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}
.note, .tiny { color: var(--muted); font-size: 0.92rem; }
.center { text-align: center; }
.narrow { max-width: 760px; margin: 0 auto; }
.page { padding: 36px 20px; }
.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}
.contact-form { display: grid; gap: 12px; }
.contact-form label { display: grid; gap: 6px; text-align: left; }
.contact-form input, .contact-form textarea {
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, #ccc);
  font: inherit;
}
footer {
  background: var(--footer);
  color: #fff;
  text-align: center;
  padding: 20px 12px 28px;
}
footer a { color: #ffe8cc; }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery img { width: 100%; height: 160px; object-fit: cover; }
.card img.thumb { width: 100%; height: 140px; object-fit: cover; margin-bottom: 10px; }

body { font-family: "Palatino Linotype", Palatino, Georgia, serif; }
.top { border-bottom: 3px double var(--ink); padding: 12px 20px 0; max-width: 1000px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand h1 { margin: 0; font-size: 2rem; font-weight: 700; }
.tagline { margin: 0; font-style: italic; color: var(--muted); }
nav { display: flex; gap: 22px; padding: 10px 0 14px; font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
nav a { color: var(--ink); text-decoration: none; }
.hero { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; max-width: 1000px; margin: 20px auto; padding: 0 20px; }
@media (max-width: 800px) { .hero { grid-template-columns: 1fr; } }
.hero-media { width: 100%; height: 340px; object-fit: cover; }
.hero-copy { border-top: 4px solid var(--accent); padding-top: 12px; }
.hero-copy h2 { font-size: 1.9rem; line-height: 1.2; margin: 0 0 10px; }
.grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; max-width: 1000px; margin: 0 auto; border-top: 1px solid #cbd5e1; }
@media (max-width: 800px) { .grid { grid-template-columns: 1fr; } }
.card { padding: 18px; border-right: 1px solid #cbd5e1; border-bottom: 1px solid #cbd5e1; border-radius: 0; background: transparent; box-shadow: none; }
.btn { border-radius: 0; font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: .06em; font-size: .8rem; }
.contact-form input, .contact-form textarea { border-radius: 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1000px; margin: 32px auto; padding: 0 20px 40px; }
.gallery img { border-radius: 0; }
.card img.thumb { border-radius: 0; height: 120px; }
