:root {
  --text: #333;
  --muted: #555;
  --accent: #e86730;
  --bar-bg: #f5f5f5;
  --footer-bg: #d6d6d6;
  --footer-text: #494949;
  --border: #e8e8e8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

a { color: var(--text); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}

.topbar .socials {
  display: flex;
  gap: 18px;
  align-items: center;
}

.topbar .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--muted);
}

.topbar .socials a:hover { color: var(--accent); }

.topbar .socials img { width: 22px; height: 22px; display: block; }

.topbar .phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 16px;
}

.topbar .phone img { width: 18px; height: 18px; opacity: .7; }

.logo-wrap {
  display: flex;
  justify-content: center;
  padding: 28px 24px 32px;
}

.logo-wrap img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}

.page-header-strip {
  background: var(--bar-bg);
  height: 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

main p {
  margin: 0 0 18px;
}

main p strong {
  display: inline-block;
  margin-top: 18px;
  color: #222;
}

.hours-block { margin-bottom: 8px; }

footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 32px 24px;
  font-size: 15px;
}

footer b { display: block; }

@media (max-width: 600px) {
  .topbar { padding: 12px 16px; }
  .topbar .socials { gap: 14px; }
  .topbar .phone { font-size: 14px; }
  .logo-wrap img { max-width: 240px; }
  main { padding: 32px 20px 48px; }
}
