/* style.css — shared layout shell */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.brand { font-family: var(--font-headings); font-size: 1.25rem; font-weight: 600; color: var(--text); }
.primary-nav { display: flex; gap: 1.5rem; }
.primary-nav a { color: var(--muted); }
.primary-nav a:hover { color: var(--text); }

main { max-width: var(--max-w); margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }

.hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
}
.hero p.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 2rem;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-deep); text-decoration: none; }
.btn.btn-ghost { background: transparent; color: var(--accent-deep); border: 1px solid var(--accent); }
.btn.btn-ghost:hover { background: var(--bg-soft); }

.section { padding: 2.5rem 0; border-top: 1px solid var(--line); }
.section-heading { text-align: center; margin-bottom: 2rem; }

.salon-grid, .article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.card h3 { margin-top: 0; }
.card .meta { color: var(--muted); font-size: 0.9rem; }

/* Featured-salon cards with a photo: full-bleed thumb, padded text body. */
.salon-card { padding: 0; overflow: hidden; }
.salon-card .card-body { padding: 1.25rem 1.5rem 1.5rem; }
.card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--bg-soft);
}

/* "Recent work" photo strip. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.75rem;
}
.gallery-cell {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}
.gallery-cell img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.gallery-cell:hover img { transform: scale(1.04); }

.neighborhoods { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; }
.neighborhoods li {
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.article-body h2 { margin-top: 2rem; }
.article-body { max-width: 780px; margin: 0 auto; }
.article-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }

figure { margin: 0; }
.article-hero {
  max-width: 980px;
  margin: 0 auto 2.5rem;
}
.article-figure {
  max-width: 780px;
  margin: 2.25rem auto;
}
.article-hero img, .article-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  background: var(--bg-soft);
}
figcaption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
figcaption a { color: var(--muted); text-decoration: underline; }

.faq-item {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}
.faq-item h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  margin-top: 4rem;
  padding: 2.5rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand { font-family: var(--font-headings); font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-tagline { color: var(--muted); font-size: 0.95rem; }
.footer-heading { font-weight: 600; margin-bottom: 0.5rem; }
.site-footer nav a { display: block; color: var(--muted); padding: 0.2rem 0; }
.site-footer nav a:hover { color: var(--text); }
.footer-copy {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}
.breadcrumb {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--text); }

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .primary-nav { gap: 0.9rem; }
}
