:root {
  --pink: #ffe8f2;
  --green: #278621;
  --burgundy: #800037;
  --blue: #4b8ff7;
  --white: #ffffff;
  --content: 1120px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  margin: 0;
  color: var(--burgundy);
  background: var(--pink);
  font-family: 'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

main { flex: 1; }

a { color: inherit; }

.content,
.header-inner {
  width: min(74vw, var(--content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--burgundy);
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.site-header {
  min-height: 118px;
  padding: 31px 0 25px;
  background: var(--pink);
}

.header-inner {
  display: flex;
  justify-content: center;
}

.header-inner a {
  display: block;
  width: 520px;
  max-width: 100%;
}

.header-inner img {
  display: block;
  width: 100%;
  height: auto;
}

.intro {
  padding: 42px 0 10px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(180px, 1fr);
  align-items: start;
  gap: 36px;
}

.salon-copy p {
  margin: 0 0 20px;
}

.book-button {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--burgundy);
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 150ms ease, transform 150ms ease;
}

.book-button:hover { background: #a90049; }
.book-button:active { transform: translateY(1px); }
.book-button:focus-visible { outline: 3px solid rgba(128, 0, 55, 0.25); outline-offset: 3px; }

.location {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
  margin-top: 34px;
  font-style: normal;
}

.location a {
  text-decoration: none;
}

.location a:first-child {
  color: var(--blue);
  font-weight: 600;
}

.location a:hover { text-decoration: underline; }

.services {
  padding: 32px 0 56px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
}

.service-card h2 {
  margin: 0;
  color: var(--green);
  font-size: 1.08rem;
  line-height: 1.15;
}

.service-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 8px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.service-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0;
  color: var(--burgundy);
  font: inherit;
  text-decoration: none;
}

.service-meta a:hover { text-decoration: underline; }
.service-meta a:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 3px; }
.price { color: var(--green); }

.site-footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(128, 0, 55, 0.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-inner nav { display: flex; gap: 4px; }
.footer-inner a { color: var(--green); font-weight: 700; }
.footer-inner p { margin: 0; }

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  transition: background-color 150ms ease, transform 150ms ease;
}

.social-link:hover {
  background: rgba(128, 0, 55, 0.08);
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

.social-link img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@media (max-width: 700px) {
  .content,
  .header-inner {
    width: calc(100% - 32px);
  }

  .site-header {
    min-height: 84px;
    padding: 24px 0 17px;
  }

  .header-inner a { width: min(400px, 96vw); }

  .intro { padding: 28px 0 8px; }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .salon-copy {
    font-size: 0.92rem;
  }

  .salon-copy p { margin-bottom: 18px; }

  .book-button {
    width: 100%;
    min-height: 48px;
    margin-top: 2px;
  }

  .location {
    gap: 18px;
    margin-top: 28px;
    font-size: 0.92rem;
  }

  .location a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .services { padding: 28px 0 40px; }

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

  .service-card h2 { font-size: 1rem; }

  .service-card p {
    -webkit-line-clamp: 4;
    font-size: 0.92rem;
  }

  .service-meta {
    min-height: 44px;
    gap: 7px;
    font-size: 0.92rem;
  }

  .service-meta a {
    min-height: 44px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
