@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #f7f7f5;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

header {
  background: #1a1a1a;
  color: #fff;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}
header h1 { font-size: 1.4rem; }
nav a {
  color: #ddd;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.95rem;
}
nav a:hover { color: #fff; }

.hero {
  background: #2c2c2c;
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
}
.hero h2 { font-size: 3.0rem; margin-bottom: 0.5rem; }

.hero p {
  font-size: 2em;
}

section h2 {
  font-size: 3.0rem;
  margin-bottom: 1.2rem;
  border-bottom: 3px solid #d85a30;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.price-table td:first-child,
.price-table td:last-child {
  font-weight: bold;
}

.price-table th {
  background: #1a1a1a;
  color: #fff;
}
.price-table tr:last-child td { border-bottom: none; }
.note { margin-top: 1rem; font-size: 1.3rem; color: #666; }
.note strong {
font-size: 1.3rem;
  color: #000;
}
.walkin-notice {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  color: #d85a30;
  margin-bottom: 0.2rem;
}
.appt-notice {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.contact-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.contact-card p { margin-bottom: 0.5rem; }
.contact-card a { color: #d85a30; text-decoration: none; }

footer {
  text-align: center;
  padding: 1.5rem;
  color: #888;
  font-size: 0.85rem;
}
.before-after {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.before-after img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}
.ba-label {
  font-size: 0.85rem;
  text-align: center;
  color: #555;
  margin-top: 4px;
}
.grade {
  font-family: 'Caveat', cursive;
  font-size: 1.6em;
  color: #d8272b;
  display: inline-block;
  transform: rotate(-8deg);
  margin-right: 4px;
}

 ### Cell Phone Compatibility
@media (max-width: 600px) {
  header .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  nav a {
    margin: 0 0.6rem;
  }
  .price-table {
    font-size: 0.85rem;
  }
  .price-table th, .price-table td {
    padding: 0.6rem 0.5rem;
  }
  .hero h2 {
    font-size: 2.2rem;
  }
  section h2 {
    font-size: 2rem;
  }
}
