:root {
  --ink: #241f27;
  --plum: #4b314c;
  --muted: #6f6570;
  --blush: #f6c2d8;
  --blush-soft: #fff3f8;
  --lilac: #c9b5ff;
  --lilac-soft: #f4efff;
  --sage: #657c69;
  --forest: #3f6f52;
  --forest-deep: #263f32;
  --forest-soft: #edf6ed;
  --gold: #b99362;
  --street: #efe6da;
  --white: #ffffff;
  --line: rgba(75, 49, 76, 0.16);
  --shadow: 0 20px 50px rgba(36, 31, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--blush-soft) 0%, var(--forest-soft) 54%, var(--white) 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon-defs {
  display: none;
}

.hair-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  overflow: hidden;
}

.hair-clipping {
  position: absolute;
  left: 0;
  top: 0;
  height: 12px;
  border-top-style: solid;
  border-radius: 999px 40% 999px 40%;
  transform-origin: center;
  animation: hair-fall var(--fall-duration) linear forwards;
  will-change: transform, opacity;
}

.hair-clipping::after {
  content: "";
  position: absolute;
  left: 28%;
  top: 3px;
  width: 44%;
  border-top: inherit;
  border-top-width: 1px;
  border-radius: 999px;
  opacity: 0.45;
  transform: rotate(26deg);
}

.hair-clipping.is-curved {
  height: 18px;
  border-top-color: transparent;
  border-right: 1px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: 1px solid transparent;
  border-radius: 50%;
}

.hair-clipping.is-curved::after {
  display: none;
}

@keyframes hair-fall {
  0% {
    opacity: 0;
    transform: translate3d(var(--start-x), -8vh, 0) rotate(var(--start-rotation));
  }
  12% {
    opacity: var(--hair-opacity);
  }
  78% {
    opacity: var(--hair-opacity);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--start-x) + var(--drift)), 108vh, 0) rotate(var(--end-rotation));
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.75rem 4rem;
  background: rgba(255, 250, 252, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(154px, 16vw, 210px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--plum);
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--plum);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(280px, 370px);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 82svh;
  padding: 5rem 4rem 3rem;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(36, 31, 39, 0.82), rgba(75, 49, 76, 0.52) 43%, rgba(38, 63, 50, 0.24) 74%),
    url("assets/salon-hero.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: min(48rem, 56vw);
  background:
    repeating-linear-gradient(28deg, transparent 0 42px, rgba(255, 255, 255, 0.13) 43px 45px),
    repeating-linear-gradient(116deg, transparent 0 56px, rgba(237, 246, 237, 0.12) 57px 59px);
  opacity: 0.64;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(0deg, rgba(36, 31, 39, 0.34), rgba(36, 31, 39, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  color: var(--white);
}

.hero-place-card {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(370px, 100%);
  margin-bottom: 0.5rem;
  padding: 1.1rem;
  color: var(--white);
  background: rgba(36, 31, 39, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  box-shadow: 0 26px 56px rgba(24, 17, 28, 0.28);
  backdrop-filter: blur(18px);
}

.hero-place-card::before {
  content: "";
  position: absolute;
  inset: 0.72rem 0.72rem auto;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--blush));
  border-radius: 999px;
}

.place-card-title {
  display: block;
  margin-top: 0.7rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-place-card strong {
  display: block;
  margin-top: 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero-place-card p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.place-mini-map {
  position: relative;
  min-height: 178px;
  margin-top: 1rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(237, 246, 237, 0.24), rgba(255, 243, 248, 0.14)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.place-road,
.place-park,
.place-stop,
.place-pin {
  position: absolute;
}

.place-road {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.place-road-main {
  left: -12%;
  top: 53%;
  width: 128%;
  height: 38px;
  transform: rotate(-13deg);
}

.place-road-side {
  left: 55%;
  top: -12%;
  width: 34px;
  height: 124%;
  background: rgba(185, 147, 98, 0.28);
  transform: rotate(25deg);
}

.place-park {
  left: 0.75rem;
  top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: 44%;
  min-height: 46px;
  padding: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(63, 111, 82, 0.84), rgba(101, 124, 105, 0.58));
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 850;
}

.place-park::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background:
    linear-gradient(var(--forest-deep), var(--forest-deep)) 50% 88% / 3px 8px no-repeat,
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.92) 0 32%, transparent 33%),
    radial-gradient(circle at 32% 48%, rgba(255, 255, 255, 0.86) 0 28%, transparent 29%),
    radial-gradient(circle at 68% 48%, rgba(255, 255, 255, 0.86) 0 28%, transparent 29%);
}

.place-stop {
  left: 1rem;
  bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  max-width: 130px;
  padding: 0.36rem 0.5rem;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

.place-stop::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background:
    linear-gradient(var(--plum), var(--plum)) 50% 100% / 2px 5px no-repeat,
    linear-gradient(var(--plum), var(--plum)) 50% 0 / 11px 9px no-repeat;
  border-radius: 2px;
}

.place-pin {
  right: 1rem;
  top: 30%;
  padding: 0.5rem 0.62rem;
  color: var(--ink);
  background: var(--blush);
  border: 2px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(24, 17, 28, 0.24);
  font-size: 0.78rem;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.booking-band h2,
.split-section h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 11ch;
  font-size: 4.6rem;
}

.hero-copy {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ink);
  background: var(--blush);
}

.btn-arrow {
  position: relative;
  display: inline-block;
  width: 1.08rem;
  height: 0.7rem;
}

.btn-arrow::before,
.btn-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
}

.btn-arrow::before {
  width: 1.02rem;
  border-top: 2px solid currentColor;
  transform: translateY(-50%);
}

.btn-arrow::after {
  width: 0.45rem;
  height: 0.45rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  color: var(--white);
  background: var(--plum);
  width: 100%;
}

.btn-plain {
  color: var(--plum);
  background: var(--white);
  border-color: var(--line);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.1rem 0 0;
}

.hero-notes div {
  padding-left: 0.8rem;
  border-left: 2px solid var(--blush);
}

.hero-notes dt {
  font-weight: 850;
}

.hero-notes dd {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.section-inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.booking-band {
  background:
    linear-gradient(90deg, var(--white) 0%, var(--white) 52%, var(--forest-soft) 100%);
  border-block: 1px solid var(--line);
  padding: 1.35rem 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 1.25rem;
  align-items: end;
}

.booking-band h2 {
  max-width: 22rem;
  font-size: 1.55rem;
}

.booking-form {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.95fr 0.8fr;
  gap: 0.75rem;
  align-items: end;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
}

.booking-form span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 0.8rem;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2,
.split-section h2,
.contact h2 {
  max-width: 680px;
  font-size: 2.7rem;
}

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

.service-card,
.team-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(75, 49, 76, 0.07);
}

.service-kicker {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card h3,
.team-card h3 {
  margin: 0.65rem 0 0.45rem;
  color: var(--plum);
  font-size: 1.28rem;
}

.service-card p,
.team-card p,
.signature-panel p {
  margin: 0;
  color: var(--muted);
}

.service-card strong {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--plum);
}

.split-section {
  position: relative;
  padding: 5rem 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(75, 49, 76, 0.96), rgba(38, 63, 50, 0.98)),
    var(--plum);
  overflow: hidden;
}

.split-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(36deg, transparent 0 54px, rgba(255, 255, 255, 0.06) 55px 56px);
  pointer-events: none;
}

.split-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: 2rem;
  align-items: center;
}

.signature-panel p {
  max-width: 45rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.texture-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.texture-board span {
  display: grid;
  place-items: end start;
  padding: 1rem;
  color: var(--ink);
  font-weight: 850;
}

.texture-board span:nth-child(1) {
  color: var(--white);
  background: var(--forest);
}

.texture-board span:nth-child(2) {
  background: var(--street);
}

.texture-board span:nth-child(3) {
  color: var(--white);
  background: #332936;
}

.texture-board span:nth-child(4) {
  background: var(--gold);
}

.team {
  background: var(--white);
}

.team-heading {
  align-items: center;
}

.team-showcase {
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
}

.team-lead {
  position: relative;
  width: min(480px, 100%);
  min-height: 0;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(246, 194, 216, 0.56), rgba(244, 239, 255, 0.92)),
    var(--white);
  border-color: rgba(75, 49, 76, 0.24);
  box-shadow: 0 24px 60px rgba(75, 49, 76, 0.16);
}

.team-lead::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  pointer-events: none;
}

.team-lead .avatar {
  width: 74px;
  height: 74px;
  font-size: 1.35rem;
}

.team-role {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 0.9rem;
  padding: 0.28rem 0.62rem;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.team-subtitle {
  margin: 0 0 1rem;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.employee-grid .team-card {
  min-height: 280px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 42px;
  margin-top: auto;
  padding: 0.66rem 0.82rem;
  color: var(--white);
  background: #2e7d58;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(46, 125, 88, 0.18);
  font-weight: 850;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  background: #256c4b;
  box-shadow: 0 14px 30px rgba(46, 125, 88, 0.24);
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--plum);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.review-band {
  padding: 3rem 0;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--forest-deep), var(--sage));
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.review-layout blockquote {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.25;
}

.review-layout strong {
  display: block;
  font-size: 2rem;
}

.review-layout span {
  display: block;
  max-width: 14rem;
  color: rgba(255, 255, 255, 0.76);
}

.directions {
  background:
    repeating-linear-gradient(118deg, transparent 0 44px, rgba(75, 49, 76, 0.035) 45px 46px),
    linear-gradient(90deg, var(--blush-soft), var(--forest-soft));
}

.directions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: center;
}

.directions-copy h2 {
  max-width: 640px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 1.04;
}

.directions-copy > p {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.local-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.local-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.65rem;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(63, 111, 82, 0.2);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 850;
}

.direction-steps {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.direction-steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.95rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(75, 49, 76, 0.06);
}

.direction-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--plum);
  border-radius: 8px;
  font-weight: 900;
}

.direction-steps h3 {
  margin: 0;
  color: var(--plum);
  font-size: 1.05rem;
}

.direction-steps p {
  grid-column: 2;
  margin: 0.18rem 0 0;
  color: var(--muted);
}

.directions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.sketch-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 255, 0.82)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-label,
.map-stop,
.salon-pin,
.park-patch,
.map-block,
.road span {
  position: absolute;
  z-index: 2;
}

.map-area {
  right: 1rem;
  bottom: 1rem;
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-park {
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 38px;
  padding: 0.46rem 0.7rem;
  color: var(--forest-deep);
  background: rgba(237, 246, 237, 0.88);
  border: 1px solid rgba(63, 111, 82, 0.22);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(63, 111, 82, 0.1);
  font-size: 0.8rem;
  font-weight: 900;
}

.map-park::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background:
    linear-gradient(var(--forest-deep), var(--forest-deep)) 50% 90% / 4px 8px no-repeat,
    radial-gradient(circle at 50% 28%, var(--forest-deep) 0 32%, transparent 33%),
    radial-gradient(circle at 32% 50%, var(--sage) 0 28%, transparent 29%),
    radial-gradient(circle at 68% 50%, var(--sage) 0 28%, transparent 29%);
}

.park-patch {
  left: -6%;
  top: -9%;
  z-index: 0;
  width: 48%;
  height: 44%;
  background:
    linear-gradient(135deg, rgba(63, 111, 82, 0.34), rgba(101, 124, 105, 0.18));
  border: 1px solid rgba(63, 111, 82, 0.18);
  border-radius: 48% 52% 34% 42%;
}

.map-block {
  width: 72px;
  height: 44px;
  background: rgba(75, 49, 76, 0.1);
  border: 1px solid rgba(75, 49, 76, 0.08);
  border-radius: 8px;
}

.block-one {
  right: 17%;
  top: 14%;
  transform: rotate(-12deg);
}

.block-two {
  left: 15%;
  top: 62%;
  transform: rotate(9deg);
}

.road {
  position: absolute;
  z-index: 1;
  display: block;
  background: rgba(75, 49, 76, 0.14);
  border: 1px solid rgba(75, 49, 76, 0.08);
}

.road-main {
  left: -8%;
  top: 47%;
  width: 116%;
  height: 58px;
  transform: rotate(-12deg);
}

.road-main span {
  left: 46%;
  top: 50%;
  color: var(--plum);
  font-size: 0.86rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.road-side {
  left: 54%;
  top: -10%;
  width: 48px;
  height: 122%;
  transform: rotate(26deg);
  background: rgba(185, 147, 98, 0.22);
}

.road-side span {
  left: 50%;
  top: 70%;
  width: 8rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  transform: translate(-50%, -50%) rotate(-90deg);
  text-align: center;
}

.walk-line {
  position: absolute;
  left: 32%;
  bottom: 24%;
  width: 240px;
  height: 92px;
  border-top: 3px dashed var(--sage);
  border-right: 3px dashed var(--sage);
  border-radius: 0 24px 0 0;
  transform: rotate(-8deg);
}

.map-stop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 34px;
  max-width: 180px;
  padding: 0.42rem 0.65rem;
  color: var(--plum);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(75, 49, 76, 0.1);
  font-size: 0.82rem;
  font-weight: 850;
}

.map-stop::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background:
    linear-gradient(var(--plum), var(--plum)) 50% 100% / 3px 6px no-repeat,
    linear-gradient(var(--plum), var(--plum)) 50% 0 / 13px 10px no-repeat;
  border-radius: 3px;
}

.stop-main {
  left: 8%;
  bottom: 15%;
}

.salon-pin {
  right: 15%;
  top: 32%;
  display: grid;
  gap: 0.2rem;
  max-width: 210px;
  padding: 0.85rem 0.95rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--plum), var(--forest-deep));
  border: 3px solid var(--blush);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(75, 49, 76, 0.2);
}

.salon-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 20px;
  height: 20px;
  background: var(--forest-deep);
  border-right: 3px solid var(--blush);
  border-bottom: 3px solid var(--blush);
  transform: translateX(-50%) rotate(45deg);
}

.salon-pin strong,
.salon-pin small {
  position: relative;
  z-index: 1;
}

.salon-pin strong {
  font-size: 1.05rem;
}

.salon-pin small {
  color: rgba(255, 255, 255, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 2rem;
  align-items: stretch;
}

address {
  margin-top: 1.4rem;
  color: var(--muted);
  font-style: normal;
}

address a {
  color: var(--plum);
  font-weight: 800;
}

.map-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 330px;
  padding: 1.5rem;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 31, 39, 0.12), rgba(38, 63, 50, 0.8)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 28px),
    linear-gradient(120deg, var(--plum), var(--forest-deep));
  border-radius: 8px;
}

.map-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: 18%;
  top: 20%;
  border: 2px solid var(--blush);
  border-radius: 50%;
}

.map-card span,
.map-card small {
  position: relative;
  z-index: 1;
}

.map-card span {
  font-size: 1.4rem;
  font-weight: 850;
}

.map-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 4rem;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 1.25rem;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    padding-inline: 1.25rem;
  }

  .hero::before {
    width: 100%;
    opacity: 0.42;
  }

  .hero-place-card {
    justify-self: start;
    width: min(440px, 100%);
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .booking-layout,
  .booking-form,
  .split-layout,
  .directions-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    min-height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.45rem);
    display: grid;
    gap: 0;
    padding: 0.45rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.8rem;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--blush-soft);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 82svh;
    padding-top: 4.2rem;
    padding-bottom: 2.4rem;
    background-position: 58% center;
  }

  .hero-place-card {
    margin-top: 0.4rem;
    padding: 1rem;
  }

  .hero-place-card strong {
    font-size: 1.25rem;
  }

  .place-mini-map {
    min-height: 150px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-notes {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 1.4rem;
  }

  .booking-band {
    padding: 2rem 0;
  }

  .section {
    padding: 3.4rem 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .split-section h2,
  .directions-copy h2,
  .contact h2 {
    font-size: 2rem;
  }

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

  .service-card,
  .team-card {
    min-height: auto;
  }

  .texture-board {
    min-height: 240px;
  }

  .review-layout {
    grid-template-columns: 1fr;
  }

  .review-layout blockquote {
    font-size: 1.35rem;
  }

  .directions-actions .btn {
    width: 100%;
  }

  .local-points span {
    flex: 1 1 calc(50% - 0.55rem);
    justify-content: center;
  }

  .sketch-map {
    min-height: 360px;
  }

  .salon-pin {
    right: 8%;
    top: 30%;
  }

  .stop-main {
    left: 6%;
    bottom: 10%;
  }

  .walk-line {
    left: 24%;
    bottom: 22%;
    width: 140px;
    height: 72px;
  }

  .site-footer {
    padding: 1.1rem 1rem;
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 72;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1rem;
    color: var(--white);
    background: var(--plum);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-weight: 850;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 148px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .booking-band h2 {
    font-size: 1.35rem;
  }

  .place-mini-map {
    min-height: 136px;
  }

  .place-park {
    width: 52%;
    font-size: 0.68rem;
  }

  .place-stop {
    max-width: 112px;
  }

  .place-pin {
    right: 0.6rem;
    font-size: 0.7rem;
  }

  .local-points span {
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .map-card {
    min-height: 260px;
  }

  .sketch-map {
    min-height: 330px;
  }

  .map-stop,
  .salon-pin {
    max-width: 160px;
    font-size: 0.78rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hair-layer {
    display: none;
  }
}
