:root {
  --black: #2a1b22;
  --navy: #2a1b30;
  --ink: #2d2227;
  --gold: #c88f9f;
  --gold-soft: #f7d7df;
  --sage: #946b78;
  --paper: #fff6f8;
  --muted: #78666d;
  --line: rgba(137, 78, 95, 0.16);
  --display-font: "Cormorant Garamond", "Bodoni 72", "Bodoni MT", "Baskerville", Georgia, "Times New Roman", serif;
  --body-font: "Montserrat", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: linear-gradient(120deg, #f4cfd8, #fff1f4 42%, #f7dfe6);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--body-font);
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 26px;
  width: min(1180px, calc(100% - 36px));
  min-height: 74px;
  margin: 18px auto 0;
  padding: 12px 18px;
  color: var(--ink);
  background: rgba(255, 246, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(72, 45, 42, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 42px;
  color: var(--black);
  font-family: var(--display-font);
  font-size: 27px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 8px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
}

main {
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 150px);
  margin: 0 auto 34px;
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(72, 45, 42, 0.16);
}

.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1.22fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  min-height: 680px;
  padding: clamp(46px, 8vw, 92px) clamp(24px, 6vw, 78px);
  overflow: hidden;
}

.hero::before {
  content: "Natural";
  position: absolute;
  left: -80px;
  top: 118px;
  color: rgba(200, 143, 159, 0.16);
  font-family: var(--display-font);
  font-size: clamp(130px, 20vw, 260px);
  line-height: 0.8;
  pointer-events: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--black);
  font-family: var(--display-font);
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: 470px;
  margin-bottom: 14px;
  font-size: clamp(56px, 6.6vw, 92px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(44px, 6.5vw, 82px);
}

h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-family: var(--display-font);
  font-size: 28px;
  font-weight: 500;
}

.hero-subtitle,
.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.narrow {
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

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

.button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button.compact {
  margin-top: 26px;
}

.hero-stats {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.hero-stats div,
.floating-card,
.testimonial {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 40px rgba(72, 45, 42, 0.12);
}

.hero-stats div {
  min-width: 126px;
  padding: 16px;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--black);
  font-family: var(--display-font);
  font-size: 24px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  min-height: 520px;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  box-shadow: 20px 20px 0 #f1cbd5;
}

.floating-card {
  position: absolute;
  right: -10px;
  bottom: 34px;
  width: min(210px, 52%);
  padding: 20px;
  background: var(--black);
  color: var(--gold-soft);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  margin-bottom: 6px;
  font-family: var(--display-font);
  font-size: 24px;
}

.floating-card span {
  color: #fff8df;
  font-size: 13px;
}

.welcome-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(24px, 6vw, 78px) clamp(52px, 8vw, 96px);
}

.welcome-gallery figure {
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  outline: 1px solid rgba(228, 157, 176, 0.42);
  box-shadow:
    0 0 0 6px rgba(250, 223, 230, 0.72),
    0 18px 42px rgba(200, 143, 159, 0.24);
}

.welcome-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-inner {
  padding: clamp(52px, 8vw, 96px) clamp(24px, 6vw, 78px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

address {
  margin-top: 26px;
  padding-left: 22px;
  color: var(--ink);
  border-left: 4px solid var(--gold);
  font-size: 23px;
  font-style: normal;
  line-height: 1.55;
}

.map-panel,
.contact-panel {
  min-height: 340px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(72, 45, 42, 0.1);
}

.map-panel {
  overflow: hidden;
  padding: 0;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 390px;
  border: 0;
}

.contact-panel {
  padding: 36px;
  background: linear-gradient(135deg, #2a1b22, #4a2532);
  color: #fff8df;
}

.contact-label {
  margin: 18px 0 8px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-facebook {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 16px 0 8px;
  color: #fff;
  background: rgba(255, 246, 248, 0.12);
  border: 1px solid rgba(247, 215, 223, 0.34);
  text-decoration: none;
}

.contact-facebook span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.service-grid,
.booking-steps {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.service-grid {
  grid-template-columns: 1fr;
}

.booking-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.times-list {
  display: grid;
  gap: 18px;
  max-width: 520px;
  margin-top: 34px;
}

.times-list div {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.times-list span {
  color: #5f5459;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.times-list strong {
  min-width: 150px;
  color: #5f5459;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
  align-self: center;
}

.service-grid article,
.booking-steps article {
  min-height: 225px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(72, 45, 42, 0.08);
}

.service-grid article {
  display: block;
  min-height: 0;
}

.service-grid article:nth-child(2),
.booking-steps article:nth-child(2) {
  background: #ffeaf0;
}

.service-grid article:nth-child(3) {
  background: #fff8fb;
}

.service-category-feature {
  color: #fff8df;
  background: linear-gradient(135deg, #2a1b22, #4a2532) !important;
}

.service-category-feature h3,
.service-category-feature .treatment-list li {
  color: #fff8df;
}

.service-heading {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 14px;
  margin-bottom: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.service-heading svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 9px;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-category-feature .service-heading svg {
  color: var(--black);
  background: var(--gold-soft);
}

.service-heading h3 {
  flex: 1;
  margin: 0;
}

.service-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: auto;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--body-font);
  font-size: 24px;
  line-height: 1;
}

.service-category-feature .service-toggle-icon {
  color: var(--black);
  background: var(--gold-soft);
}

.service-toggle[aria-expanded="true"] .service-toggle-icon {
  transform: rotate(45deg);
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 24px 0 0 56px;
  padding: 0;
  list-style: none;
}

.treatment-list[hidden] {
  display: none;
}

.treatment-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.45;
}

.treatment-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(250, 223, 230, 0.72);
  transform: rotate(45deg);
}

.service-category-feature .treatment-list li::before {
  background: var(--gold-soft);
  box-shadow: 0 0 0 5px rgba(247, 215, 223, 0.16);
}

.booking-steps p {
  color: var(--muted);
  line-height: 1.55;
}

.stylists-section {
  margin-top: 54px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(72, 45, 42, 0.08);
}

.stylists-section h3 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 54px);
}

.stylists-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stylists-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  color: var(--black);
  background: #fff6f8;
  border: 1px solid rgba(228, 157, 176, 0.42);
  box-shadow: 0 12px 28px rgba(200, 143, 159, 0.14);
  font-family: var(--display-font);
  font-size: 30px;
  font-weight: 600;
}

.stylists-photo {
  width: min(520px, 100%);
  margin: 34px auto 0;
  overflow: hidden;
  background: #fff;
  outline: 1px solid rgba(228, 157, 176, 0.42);
  box-shadow:
    0 0 0 6px rgba(250, 223, 230, 0.72),
    0 18px 42px rgba(200, 143, 159, 0.24);
}

.stylists-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.booking-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 700;
}

.testimonial {
  max-width: 520px;
  margin-top: 34px;
  padding: 26px;
  border-left: 5px solid var(--gold);
}

.testimonial p {
  margin-bottom: 12px;
  color: var(--black);
  font-family: var(--display-font);
  font-size: 24px;
  line-height: 1.3;
}

.testimonial span {
  color: var(--muted);
  font-size: 13px;
}

.phone-link {
  display: inline-block;
  margin: 4px 0 20px;
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(34px, 5vw, 58px);
  text-decoration: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 24px;
  padding: 28px clamp(24px, 6vw, 78px);
  color: #efe8cc;
  background: linear-gradient(135deg, #2a1b30, #4a2538);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--gold-soft);
  text-decoration: none;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: #c88f9f;
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    order: 3;
    width: 100%;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    width: 100%;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 0;
    height: auto;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

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

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    grid-template-columns: 1fr;
  }

  .service-heading {
    margin-bottom: 8px;
  }

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

@media (max-width: 640px) {
  .site-header,
  main,
  footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .site-header {
    margin-top: 0;
    min-height: 76px;
    border-left: 0;
    border-right: 0;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .service-grid,
  .booking-steps,
  .stylists-grid {
    grid-template-columns: 1fr;
  }

  .treatment-list {
    grid-template-columns: 1fr;
  }

  .welcome-gallery {
    grid-template-columns: 1fr;
  }

  .times-list div {
    gap: 18px;
  }

  .times-list strong {
    min-width: auto;
  }

  footer {
    flex-direction: column;
    margin-bottom: 0;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
