/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f9f0f2;
  color: #5c4a4e;
  line-height: 1.6;
}

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

/* Hero */
.hero {
  background: radial-gradient(circle at top, #fbe4ea 0, #f6e2e4 45%, #f9f0f2 100%);
  padding: 1.75rem 1.25rem 3.25rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-logo {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  clip-path: circle(48% at 50% 50%);
}

.logo-text {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.4rem;
  color: #a46874;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: #70545a;
}

.nav a:hover {
  color: #b96c7d;
}

.nav-cta {
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 110, 125, 0.35);
}

/* Hero content */
.hero-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #a46874;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 0.98rem;
  max-width: 580px;
  margin: 0 auto 1.6rem;
  color: #7a6167;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #e29aa9, #b96c7d);
  color: #fff;
  box-shadow: 0 10px 28px rgba(184, 110, 125, 0.45);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: #a46874;
  border: 1px solid rgba(184, 110, 125, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.6);
}

.btn-full {
  width: 100%;
}

.center-btn-wrap {
  margin-top: 1.2rem;
  text-align: center;
}

/* Sections */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.section-alt {
  background: #fdf6f8;
  border-radius: 1.5rem;
  box-shadow: 0 14px 30px rgba(167, 106, 116, 0.12);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.7rem;
  color: #a46874;
  margin-bottom: 0.5rem;
}

.section-intro {
  max-width: 650px;
  color: #7a6167;
  margin-bottom: 1.6rem;
  font-size: 0.97rem;
}

/* Services & pricing */
.services-layout {
  display: grid;
  gap: 1.7rem;
}

.services-two {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 800px) {
  .services-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.price-column h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #8f5463;
}

.price-list {
  list-style: none;
  font-size: 0.95rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(184, 110, 125, 0.25);
}

.price-list li span:last-child {
  white-space: nowrap;
}

.dm-note {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: #7a6167;
}

/* Before & after slider */
.ba-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .ba-grid.slider-mode {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ba-item {
  background: #fbeff2;
  border-radius: 1.2rem;
  padding: 0.9rem;
  border: 1px solid rgba(184, 110, 125, 0.25);
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #a46874;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: #000;
  aspect-ratio: 3 / 4; /* tall, consistent, no huge size */
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;           /* fills frame, no black bars */
  object-position: center bottom; /* keep the ends of the hair in view */
}

.ba-img-after {
  clip-path: inset(0 40% 0 0);
  transition: clip-path 0.1s linear;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  margin-left: -1.5px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 1px rgba(184, 110, 125, 0.5);
  left: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle-knob {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* About */
.about-layout {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  }
}

.about-text p + p {
  margin-top: 0.75rem;
}

.about-logo img {
  border-radius: 50%;
  max-width: 260px;
  height: 260px;
  margin: 0 auto;
  clip-path: circle(48% at 50% 50%);
  object-fit: cover;
  object-position: center 30%;
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  }
}

.contact-details ul {
  list-style: none;
  margin-top: 0.5rem;
}

.contact-details li {
  margin-bottom: 0.4rem;
}

.contact-details a {
  color: #a46874;
  text-decoration: none;
  border-bottom: 1px solid rgba(164, 104, 116, 0.35);
}

.contact-details a:hover {
  border-bottom-color: rgba(164, 104, 116, 0.7);
}

.contact-form {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 14px 32px rgba(167, 106, 116, 0.18);
  border: 1px solid rgba(248, 223, 231, 0.9);
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: #7a6167;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid rgba(184, 110, 125, 0.35);
  padding: 0.6rem 0.7rem;
  font-size: 0.9rem;
  background: #fff;
  color: #5c4a4e;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid rgba(184, 110, 125, 0.7);
  outline-offset: 1px;
}

.small {
  font-size: 0.78rem;
  color: #8b6b72;
  margin-top: 0.3rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.8rem 1.25rem 2.2rem;
  font-size: 0.8rem;
  color: #8b6b72;
}
