:root {
  color-scheme: light;
  --background: #fbf7f1;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #302e2b;
  --muted: #7a7066;
  --gold: #c69f6d;
  --gold-soft: rgba(198, 159, 109, 0.18);
  --border: rgba(117, 92, 71, 0.12);
  --shadow: 0 24px 60px rgba(85, 68, 54, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, #fefcf7 0%, #f4eee7 100%);
  color: var(--text);
  line-height: 1.7;
  text-align: center;
}

.site-nav {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 1.6rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.hero-section {
  position: relative;
  padding: 2rem 0 4rem;
}

.hero-content {
  width: min(1100px, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding: 3rem 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stylist-name {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 3.8vw, 5rem);
  letter-spacing: -0.05em;
}

.stylist-specialty {
  margin: 0;
  max-width: 38rem;
  font-size: 1.12rem;
  color: var(--muted);
}

.hero-photo {
  width: min(380px, 100%);
  aspect-ratio: 1 / 1.03;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 22px 50px rgba(120, 89, 41, 0.12);
}

.book-now-btn,
.booking-link,
.footer-booking {
  display: inline-block;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  text-decoration: none;
  background: linear-gradient(135deg, #c8a672 0%, #e2c89b 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 18px 30px rgba(198, 159, 109, 0.22);
}

.book-now-btn {
  width: fit-content;
}

.content-section {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 3rem 0;
}

.section-title {
  margin: 0 0 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.2vw, 2.7rem);
  letter-spacing: -0.04em;
}

.services-section,
.booking-section,
.about-section,
.policies-section,
.location-section,
.contact-section,
.testimonials-section {
  padding-top: 1rem;
}

.service-list,
.testimonial-list,
.hours-list {
  display: grid;
  gap: 1.75rem;
}

.service-item,
.testimonial-item,
.booking-section,
.about-section,
.policies-section,
.location-section,
.contact-section {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.service-item {
  display: grid;
  gap: 1rem;
}

.service-name,
.testimonial-text,
.location-text,
.contact-item,
.hours-item,
.policy-item {
  margin: 0;
}

.service-name {
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.service-photo {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid var(--border);
}

.service-price {
  color: var(--gold);
  font-weight: 700;
}

.service-desc,
.about-text,
.booking-text,
.location-text,
.contact-item,
.hours-item {
  color: var(--muted);
}

.booking-section {
  text-align: center;
}

.booking-text {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
}

.about-text {
  max-width: 72ch;
  margin: 0 auto;
  text-align: center;
}

.about-section {
  text-align: center;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.policy-item::before {
  content: "•";
  margin-right: 0.5rem;
  color: var(--gold);
}

.footer {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto 3rem;
  padding: 2rem;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.footer-text,
.footer-socials {
  margin: 0;
  color: var(--muted);
}

.footer-booking {
  margin-top: 0.5rem;
}

@media (min-width: 900px) {
  .hero-content {
    grid-template-columns: 1.2fr 0.9fr;
    align-items: center;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .hero-content {
    padding: 2rem;
    justify-items: center;
    text-align: center;
  }

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

  .service-item,
  .testimonial-item,
  .booking-section,
  .about-section,
  .policies-section,
  .location-section,
  .contact-section,
  .footer {
    text-align: center;
    align-items: center;
  }

  .footer {
    justify-items: center;
  }

  .services-section .section-title {
    text-align: center;
  }

  .policy-list,
  .hours-list {
    justify-items: center;
  }
}
