/* Generic small-business template — deliberately its own, unrelated look
   from the hosting portal or quiet-forge.net branding, since this represents
   an independent customer's own site content, not ours. */
:root {
  --cream: #fdf8f0;
  --coffee: #4a3428;
  --coffee-light: #7a5c48;
  --amber: #c17f3e;
  --amber-dark: #a3672e;
  --line: #e5dcd0;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--coffee);
  background: var(--cream);
  line-height: 1.7;
}
.wrap { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }
h1, h2, h3 { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 700; }
a { color: var(--amber-dark); }

.site-header { background: var(--coffee); color: #fff; padding: 1rem 0; }
.site-header .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.brand { color: #fff; font-size: 1.3rem; font-weight: 700; text-decoration: none; font-family: -apple-system, sans-serif; }
.site-header nav a { color: #f0e6da; text-decoration: none; margin-left: 1.5rem; font-family: -apple-system, sans-serif; font-size: 0.95rem; }
.site-header nav a:hover { color: var(--amber); }

.hero { background: linear-gradient(160deg, var(--coffee) 0%, var(--coffee-light) 100%); color: #fff; padding: 5rem 0; text-align: center; }
.hero h1 { font-size: 2.6rem; margin: 0 0 1.2rem; }
.hero p { max-width: 34rem; margin: 0 auto 2rem; color: #f0e6da; }
.btn { display: inline-block; background: var(--amber); color: #fff; padding: 0.8rem 1.8rem; border-radius: 4px; text-decoration: none; font-family: -apple-system, sans-serif; font-weight: 600; }
.btn:hover { background: var(--amber-dark); }

.section { padding: 4rem 0; }
.section.alt { background: #f6ede0; }
.section h2 { font-size: 2rem; margin-bottom: 1.2rem; border-bottom: 3px solid var(--amber); display: inline-block; padding-bottom: 0.4rem; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
@media (max-width: 700px) { .grid { grid-template-columns: 1fr; } }
.card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 1.5rem; }
.card h3 { margin-top: 0; }
.price { display: block; margin-top: 0.8rem; font-weight: 700; color: var(--amber-dark); font-family: -apple-system, sans-serif; }

.hours-list { list-style: none; padding: 0; max-width: 26rem; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--line); font-family: -apple-system, sans-serif; }

.site-footer { background: var(--coffee); color: #cbb9a8; text-align: center; padding: 1.5rem 0; font-family: -apple-system, sans-serif; font-size: 0.85rem; }
