:root {
  --bg: #f7efe8;
  --surface: #fff5f0;
  --surface-dark: #e7d6cf;
  --text: #373737;
  --muted: #7a6c66;
  --accent: #c69b6d;
  --accent-dark: #997453;
  --border: rgba(55, 55, 55, 0.08);
  --shadow: 0 20px 50px rgba(55, 55, 55, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, #f7efe8 0%, #fff9f4 100%);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}

a.button:hover,
button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.button-secondary {
  background: rgba(198, 155, 109, 0.12);
  color: var(--text);
  border-color: rgba(198, 155, 109, 0.18);
}

.header,
.main,
footer,
section {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-section {
  padding: 3.5rem 0 2.5rem;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-image {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 1rem 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.02;
}

.hero-subline {
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

main {
  padding-bottom: 4rem;
}

.section-header {
  margin-bottom: 1.6rem;
}

.section-header h2 {
  margin: 0;
  font-size: 2rem;
}

.section-header p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  max-width: 42rem;
}

.services-overview,
.before-after-gallery,
.about-tech,
.location-hours,
.policies-preview,
.social-proof,
.instagram-cta,
.booking-cta {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.service-grid,
.gallery-grid,
.review-list,
.location-details {
  display: grid;
  gap: 1.5rem;
}

.service-card,
.review-card,
.gallery-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 1.5rem;
  box-shadow: 0 18px 35px rgba(55, 55, 55, 0.05);
}

.service-card h3,
.review-card p,
.gallery-item figcaption {
  margin: 0;
}

.service-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.price {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-item {
  overflow: hidden;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 1rem;
  color: var(--text);
  background: #fff;
}

.about-tech p,
.location-details p,
.policies-preview ul,
.instagram-cta p,
.booking-cta h2 {
  margin: 0;
}

.about-tech p {
  max-width: 46rem;
  color: var(--muted);
}

.location-details {
  grid-template-columns: 1fr;
}

.policies-preview ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.policies-preview li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(119, 102, 91, 0.12);
  color: var(--text);
}

.policies-preview li:last-child {
  border-bottom: none;
}

.review-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.review-card p {
  color: var(--muted);
}

.review-author {
  margin-top: 1rem;
  color: var(--text);
  font-weight: 600;
}

.instagram-cta {
  text-align: center;
}

.instagram-cta p {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.booking-cta {
  text-align: center;
  padding: 2.5rem 2rem;
}

.booking-cta h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0 3rem;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.footer-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.footer-item h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.footer-item p,
.footer-item a {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .services-overview,
  .before-after-gallery,
  .about-tech,
  .location-hours,
  .policies-preview,
  .social-proof,
  .instagram-cta,
  .booking-cta {
    padding: 1.5rem;
  }
}

@media (max-width: 560px) {
  body {
    background: #f7efe8;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-image {
    margin: 0 auto;
  }

  .hero-copy .button {
    margin: 0 auto;
  }

  .service-grid,
  .gallery-grid,
  .review-list {
    gap: 1rem;
  }

  .footer-item {
    padding: 1.2rem;
  }
}

.cta-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.cta-content {
  text-align: center;
  max-width: 600px;
}

.cta-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--muted);
}

.button-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}
