:root {
  --page-bg: #3d3933;
  --top-bg: #2b2925;
  --nav-bg: #181716;
  --cream: #f2eee6;
  --paper: #ffffff;
  --text: #4b4b4b;
  --heading: #2f2b25;
  --muted: #7a7369;
  --shadow: rgba(0,0,0,.32);
  --container: 980px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Droid Sans", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255,255,255,.08), transparent 360px),
    linear-gradient(90deg, rgba(0,0,0,.10), transparent 15%, transparent 85%, rgba(0,0,0,.10)),
    var(--page-bg);
  line-height: 1.55;
}

a { color: inherit; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(#34312c, var(--top-bg));
  color: #d8d1c5;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar-inner {
  min-height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-top {
  font-size: 17px;
  letter-spacing: .06em;
  color: #ffffff;
  text-shadow: 0 1px 1px #000;
  white-space: nowrap;
  text-decoration: none;
}

.nav-wrap {
  background: linear-gradient(#26231f, var(--nav-bg));
  border-top: 1px solid #5f564b;
  border-bottom: 6px solid #2f2a25;
  box-shadow: 0 8px 20px var(--shadow);
}

.nav-inner {
  min-height: 170px;
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.logo {
  display: block;
  text-align: center;
}

.logo img {
  display: block;
  max-width: 420px;
  width: min(420px, 92vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 1px rgba(0,0,0,.45));
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,.08);
}

nav a {
  display: block;
  padding: 18px 18px;
  color: #eee8dc;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: .04em;
  border-right: 1px solid rgba(255,255,255,.08);
  text-shadow: 0 1px 0 #000;
}

nav a:hover,
nav a.active {
  background: linear-gradient(#4b443b, #302b26);
  color: #fff;
}

main {
  background: linear-gradient(#f4efe6, #dfd7c9);
  padding: 30px 0 46px;
}

.content-card {
  background: var(--paper);
  border: 1px solid #cbc1b2;
  box-shadow: 0 3px 14px rgba(0,0,0,.22);
  padding: 28px 34px 36px;
}

.social-row { margin-bottom: 16px; }

.facebook-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 3px;
  background: #3b5998;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 1px 3px rgba(0,0,0,.3);
}

h1, h2 {
  font-family: Oswald, Arial, sans-serif;
  color: var(--heading);
  font-weight: 500;
  line-height: 1.15;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: .01em;
}

.lead {
  font-size: 17px;
  color: #555;
  max-width: 900px;
  margin: 0 0 24px;
}

.photo-block {
  margin: 28px auto;
  text-align: center;
  max-width: 860px;
}

.photo-block img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #c9c0b5;
  background: #fff;
  padding: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,.20);
}

.caption {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-family: "Droid Serif", Georgia, serif;
}

/* Services page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.service-block h2 {
  margin-top: 0;
  text-align: left;
}

.service-image {
  float: left;
  max-width: 210px;
  height: auto;
  margin: 5px 14px 10px 0;
  border: 1px solid #c9c0b5;
  padding: 3px;
  background: #fff;
}

.service-block p {
  text-align: left;
  margin-top: 0;
}

.service-block::after {
  content: "";
  display: block;
  clear: both;
}

footer {
  min-height: 110px;
  background: linear-gradient(#2b2722, #191817);
  border-top: 1px solid #62584b;
  color: #bfb7aa;
  padding: 30px 0;
  font-size: 14px;
}

footer .container {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

footer a {
  color: #e6dccf;
  text-decoration: none;
}

footer a:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .topbar-inner,
  .nav-inner,
  footer .container {
    align-items: center;
    flex-direction: column;
  }

  .topbar-inner { padding: 10px 0; }
  .phone-top { font-size: 16px; }
  .nav-inner { min-height: auto; padding: 18px 0 0; gap: 16px; }
  .logo img { max-width: 320px; width: min(320px, 92vw); }
  nav ul { width: 100%; flex-wrap: wrap; border-left: none; }
  nav li { width: 50%; }
  nav a { text-align: center; padding: 13px 8px; border: 1px solid rgba(255,255,255,.08); }
  .banner { min-height: 300px; border-width: 5px; }
  .content-card { padding: 22px 20px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-image { max-width: 180px; }
}

.banner-image {
  background: #241f1b;
  padding: 20px 0;
}

.banner-image img {
  width: 100%;
  max-width: 980px;
  margin: auto;
  display: block;
  border: 8px solid #f8f4eb;
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
}