/* layout: wave-hero */
:root {
  --accent: #0369a1;
  --bg: #e0f2fe;
  --ink: #0c4a6e;
  --footer: #075985;
  --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: "Verdana", Geneva, sans-serif; background: linear-gradient(180deg, #e0f2fe, #f0f9ff); }
.top { padding: 16px 20px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand h1 { margin: 0; color: var(--accent); }
.tagline { margin: 0; font-size: .9rem; }
nav { display: flex; gap: 14px; }
nav a { color: var(--ink); text-decoration: none; font-weight: 700; }
.hero { position: relative; overflow: hidden; }
.hero-media { width: 100%; height: 380px; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23e0f2fe' d='M0 40 Q360 0 720 40 T1440 40 V80 H0Z'/%3E%3C/svg%3E") center/cover;
}
.hero-copy { max-width: 900px; margin: -20px auto 0; position: relative; z-index: 1; padding: 20px; text-align: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; max-width: 960px; margin: 0 auto; padding: 12px 16px 32px; }
.card { background: #fff; border-radius: 50% 50% 12px 12px / 18px 18px 12px 12px; padding: 16px; box-shadow: 0 8px 24px rgba(3,105,161,.12); }
.card img.thumb { border-radius: 40px 40px 8px 8px; }
.btn { border-radius: 999px; }
.contact-form input, .contact-form textarea { border-radius: 20px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto 40px; padding: 16px; }
.gallery img { border-radius: 40% 40% 8px 8px / 16px 16px 8px 8px; }
