:root {
  --blush: #efd9d2;
  --champagne: #c9a66b;
  --charcoal: #2e2a28;
  --ivory: #faf6f1;
  --text-soft: #544f4c;
  --card-bg: #fffdfb;
  --border: #dfd0c4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  z-index: 999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 241, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  font-weight: 700;
  color: var(--charcoal);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #8e6a31;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.quick-contact,
.book-cta {
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.quick-contact {
  background: #1f9f51;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.book-cta {
  background: var(--champagne);
  color: #181411;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(95deg, rgba(46, 42, 40, 0.72), rgba(46, 42, 40, 0.15));
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 700px;
  padding-block: 4rem;
}

.hero h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin: 0.2rem 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
}

.btn-primary {
  background: var(--champagne);
  color: #181411;
}

.section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.section-intro {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.services {
  background: #f6efea;
}

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem 0.9rem;
  font-size: 1.3rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  cursor: pointer;
  color: var(--charcoal);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-panel.open {
  max-height: 380px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0 1rem 1rem;
}

.service-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
}

.service-list li:last-child {
  border-bottom: 0;
}

.service-list strong {
  color: #493b24;
}

.stylist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stylist-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.stylist-card:hover {
  transform: translateY(-4px);
}

.stylist-card img {
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.stylist-info {
  padding: 1rem;
}

.stylist-info p {
  color: var(--text-soft);
}

.comparison {
  background: #f6efea;
}

.compare-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  touch-action: none;
}

.compare-wrapper > img,
.before-layer img {
  width: 100%;
  height: min(65vw, 600px);
  object-fit: cover;
}

.before-layer {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.slider-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #413732;
}

.compare-range {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

#booking-form {
  padding: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.form-row {
  margin-bottom: 0.95rem;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

input,
select,
.newsletter-form button {
  width: 100%;
  border: 1px solid #b8aca2;
  border-radius: 8px;
  padding: 0.65rem 0.7rem;
  font: inherit;
  color: var(--charcoal);
  background: #fff;
}

input:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid #2f5ea8;
  outline-offset: 2px;
}

.error-message {
  color: #8f1d18;
  min-height: 1.2em;
  display: block;
  margin-top: 0.2rem;
  font-size: 0.88rem;
}

.form-status {
  margin-top: 0.8rem;
  font-weight: 700;
}

.testimonials {
  background: #f5eeea;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.rating {
  color: #725420;
  letter-spacing: 0.1em;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
}

.gallery-strip img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-strip img:hover {
  transform: scale(1.03);
}

.site-footer {
  background: #2f2926;
  color: #f2ece7;
  padding: 2.4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer iframe {
  width: 100%;
  border: 0;
  border-radius: 10px;
  min-height: 160px;
}

.newsletter-form button {
  margin-top: 0.5rem;
  background: var(--champagne);
  color: #1d1815;
  font-weight: 700;
  cursor: pointer;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid #8d7b67;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

@media (max-width: 1024px) {
  .header-actions span {
    display: none;
  }

  .stylist-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #fff9f5;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .primary-nav.open {
    max-height: 320px;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .header-actions {
    margin-left: auto;
  }

  .book-cta {
    display: none;
  }

  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1120px, calc(100% - 1.1rem));
  }

  .hero {
    min-height: 72vh;
  }

  .service-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .stylist-grid,
  .testimonial-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip img {
    height: 230px;
  }
}
