:root {
  --accent: #7c61a4;
  --accent-light: #b78ff0;
  --ink: #111;
  --muted: #777;
  --line: #dedede;
  --paper: #fff;
  --soft: #f7f5f8;
  --footer: #1e1e1e;
  --lavender-wash: #f4eef8;
  --shadow: 0 18px 48px rgba(45, 29, 58, 0.12);
  --shadow-strong: 0 26px 70px rgba(45, 29, 58, 0.2);
  --font-body: "Avenir Next", Avenir, "Gill Sans", "Trebuchet MS", "Segoe UI", sans-serif;
  --font-heading: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-script: "Oooh Baby", "Parisienne", "Apple Chancery", "Segoe Script", cursive;
}

@font-face {
  font-family: "Oooh Baby";
  src: url("assets/oooh-baby.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 100px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(183, 143, 240, 0.16), transparent 28%),
    radial-gradient(circle at 94% 36%, rgba(124, 97, 164, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbf7ff 44%, #f3edf8 100%);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.78;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 18%, rgba(124, 97, 164, 0.055) 19%, transparent 28% 100%),
    linear-gradient(64deg, transparent 0 34%, rgba(183, 143, 240, 0.075) 35%, transparent 47% 100%),
    linear-gradient(142deg, transparent 0 58%, rgba(124, 97, 164, 0.045) 59%, transparent 70% 100%),
    radial-gradient(ellipse at 24% 18%, rgba(183, 143, 240, 0.12), transparent 38%),
    radial-gradient(ellipse at 78% 68%, rgba(124, 97, 164, 0.08), transparent 42%);
  opacity: 0.82;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(148, 148, 148, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: min-height 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(18px) saturate(1.2);
}

.site-header.is-scrolled {
  min-height: 62px;
  padding-block: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(45, 29, 58, 0.12);
}

.brand img {
  width: 150px;
  height: auto;
  transition: width 0.25s ease;
}

.site-header.is-scrolled .brand img {
  width: 105px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  color: #000;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.site-nav a:not(.nav-appointment)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--accent);
}

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

.site-nav .nav-appointment {
  margin-left: 14px;
  padding-inline: 18px;
  color: var(--accent);
  background: #fff;
  border: 1px solid var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 rgba(124, 97, 164, 0);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-nav .nav-appointment:hover,
.site-nav .nav-appointment:focus {
  color: #553881;
  background: #efe7f8;
  border-color: var(--accent-light);
  box-shadow: 0 8px 22px rgba(124, 97, 164, 0.22);
  transform: translateY(-1px) scale(1.03);
}

.mobile-appointment {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 9px 12px;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(124, 97, 164, 0.12);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mobile-appointment svg {
  width: 19px;
  height: 19px;
  padding: 0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
  display: block;
  transform: translateY(0.5px);
}

.mobile-appointment .wa-bubble {
  stroke-width: 1.65;
}

.mobile-appointment .wa-phone {
  stroke-width: 1.85;
}

.mobile-appointment:hover,
.mobile-appointment:focus {
  color: #553881;
  background: #efe7f8;
  box-shadow: 0 12px 28px rgba(124, 97, 164, 0.22);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

.menu-button:hover,
.menu-button:focus {
  background: var(--lavender-wash);
  transform: translateY(-1px);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 33px;
  height: 3px;
  margin: 0 auto 5px;
  background: var(--accent);
}

.hero {
  position: relative;
  width: 100vw;
  min-height: clamp(560px, 70vh, 860px);
  margin-left: calc(50% - 50vw);
  display: block;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(183, 143, 240, 0.24), transparent 30%),
    linear-gradient(135deg, #fff, #f3edf8 58%, #17121b);
  box-shadow: inset 0 -1px 0 rgba(124, 97, 164, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.82));
  pointer-events: none;
}

.hero-slide {
  position: relative;
  width: 100%;
  min-height: inherit;
  opacity: 1;
  display: block;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(0);
  animation: none;
}

.hero .hero-slide:not(:first-child) {
  display: none !important;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroZoom 15s infinite;
}

.video-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(17, 10, 24, 0.22));
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  max-height: none;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #eee;
}

.video-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 38%, transparent 62%, rgba(30, 18, 42, 0.18));
  z-index: 3;
  pointer-events: none;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1.02);
  }
}

.welcome,
.section {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}

.welcome {
  position: relative;
  padding: clamp(42px, 7vw, 78px) 0 clamp(50px, 8vw, 92px);
  text-align: center;
}

.welcome::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(720px, 82vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 97, 164, 0.42), transparent);
  transform: translateX(-50%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: #000;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  line-height: 1.14;
}

h1 {
  font-size: clamp(32px, 6vw, 58px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(27px, 4.2vw, 44px);
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  letter-spacing: 0;
}

.script-heading {
  color: #231b27;
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

h1.script-heading {
  font-size: clamp(48px, 8.5vw, 86px);
}

h2.script-heading {
  font-size: clamp(42px, 7vw, 78px);
}

p {
  color: var(--muted);
  font-weight: 400;
}

.welcome p:last-of-type {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.82;
}

.separator {
  width: 69px;
  height: 1px;
  margin: 18px auto 28px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.separator.left {
  margin-left: 0;
  background: linear-gradient(90deg, var(--accent), transparent);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 650;
  box-shadow: 0 8px 22px rgba(124, 97, 164, 0.08);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(124, 97, 164, 0.2);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #654889);
}

.button.primary:hover {
  background: #553881;
  border-color: #553881;
}

.button.ghost {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.72);
}

.button.ghost.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.section {
  position: relative;
  padding: clamp(62px, 9vw, 104px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 82px);
  align-items: start;
  border-top: 1px solid rgba(124, 97, 164, 0.16);
}

.copy p {
  margin-top: 0;
  font-size: 15px;
}

.atelier-instagram {
  display: block;
  margin-top: 26px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(124, 97, 164, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(45, 29, 58, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.atelier-instagram:hover,
.atelier-instagram:focus {
  color: var(--ink);
  border-color: rgba(183, 143, 240, 0.46);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.insta-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 14px;
}

.insta-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 10px 22px rgba(124, 97, 164, 0.22);
  flex: 0 0 auto;
}

.insta-avatar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insta-head strong,
.insta-head small,
.insta-foot {
  display: block;
  font-family: var(--font-body);
}

.insta-head strong {
  color: #231b27;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.insta-head small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.3;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

.insta-foot {
  padding: 12px 18px 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: transparent;
  border: 0;
}

.service-grid article {
  position: relative;
  min-height: 218px;
  padding: 34px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(124, 97, 164, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(45, 29, 58, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.service-grid article:hover {
  border-color: rgba(183, 143, 240, 0.55);
  box-shadow: var(--shadow-strong);
  transform: translateY(-6px);
}

.service-grid article:hover::before {
  transform: scaleX(1);
}

.services .service-grid article h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-style: italic;
  font-weight: 650;
  line-height: 1.18;
  white-space: nowrap;
}

.service-grid p {
  margin-bottom: 0;
}

.image-band img {
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  position: relative;
  min-height: 520px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: var(--shadow);
  outline: none;
  perspective: 1200px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.team-card:hover,
.team-card:focus-within {
  box-shadow: var(--shadow-strong);
  transform: translateY(-7px);
}

.team-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  transform-style: preserve-3d;
  transition: transform 0.68s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.team-card:hover .team-card-inner,
.team-card:focus .team-card-inner,
.team-card:focus-within .team-card-inner {
  transform: rotateY(180deg);
}

.team-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(124, 97, 164, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  backface-visibility: hidden;
}

.team-card-front {
  transform: rotateY(0deg);
}

.team-card-back {
  align-content: start;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 12px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(124, 97, 164, 0.88), rgba(62, 35, 84, 0.76)),
    rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: rotateY(180deg);
  backdrop-filter: blur(22px) saturate(1.35);
}

.team-card-back::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 15px;
  pointer-events: none;
}

.team-card-back .eyebrow,
.team-card-back h3,
.team-card-back p {
  position: relative;
  color: #fff;
}

.team-card-back .eyebrow {
  color: #eadcf8;
}

.team-card-back p {
  margin: 0;
  font-size: 14px;
}

.team-bio {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding-right: 0;
  color: #fff;
}

.team-bio p {
  margin: 0 0 8px;
  font-size: 12.4px;
  line-height: 1.38;
}

.team-bio strong {
  font-weight: 700;
}

.team-bio h4 {
  margin: 10px 0 6px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-style: italic;
  font-weight: 500;
}

.team-bio ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin: 0;
  padding-left: 18px;
}

.team-bio li {
  color: #fff;
  font-size: 12.5px;
  line-height: 1.35;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 14px;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.team-card:hover img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.025);
}

.brands {
  position: relative;
  display: block;
  padding: 34px clamp(18px, 5vw, 72px);
  overflow: hidden;
  border-block: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.92);
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(44px, 7vw, 96px);
  animation: brandMarquee 24s linear infinite;
}

.brands:hover .brands-track {
  animation-play-state: paused;
}

.brands img {
  flex: 0 0 clamp(150px, 17vw, 240px);
  height: 54px;
  max-height: 54px;
  width: clamp(150px, 17vw, 240px);
  object-fit: contain;
  margin: 0 auto;
  filter: grayscale(1) opacity(0.58);
  opacity: 1;
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.brands img[src*="logo-dyson"] {
  height: 36px;
  max-height: 36px;
  width: clamp(110px, 12vw, 160px);
  filter: grayscale(1) opacity(0.36);
}

.brands img[src*="logo-estel"] {
  height: 62px;
  max-height: 62px;
  width: clamp(130px, 14vw, 190px);
}

.brands img[src*="logo-ghd"] {
  height: 62px;
  max-height: 62px;
  width: clamp(150px, 16vw, 220px);
}

.brands img[src*="logo-loreal"] {
  height: 28px;
  max-height: 28px;
  width: clamp(120px, 12vw, 170px);
  filter: grayscale(1) opacity(0.48);
}

.brands img[src*="logo-great-lengths"] {
  height: 34px;
  max-height: 34px;
  width: clamp(150px, 16vw, 230px);
  filter: grayscale(1) opacity(0.48);
}

.brands img:hover {
  filter: grayscale(1) opacity(0.76);
  opacity: 1;
  transform: translateY(-2px);
}

.brands img[src*="logo-loreal"]:hover {
  filter: grayscale(1) opacity(0.68);
  transform: translateY(-1px);
}

.brands img[src*="logo-great-lengths"]:hover {
  filter: grayscale(1) opacity(0.68);
  transform: translateY(-1px);
}

@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(22px, 3.5vw, 48px)));
  }
}

.prices {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1140px) / 2));
  background:
    linear-gradient(135deg, rgba(124, 97, 164, 0.08), rgba(255, 255, 255, 0.2)),
    var(--soft);
}

.price-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(26px, 6vw, 70px);
}

.price-list {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(124, 97, 164, 0.15);
  border-top: 3px solid var(--accent);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.price-list::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(183, 143, 240, 0.14);
}

.price-list:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-5px);
}

.price-list h3 {
  margin-bottom: 20px;
}

.price-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  transition: background 0.18s ease, padding-inline 0.18s ease;
}

.price-list p:hover {
  padding-inline: 8px;
  background: rgba(183, 143, 240, 0.08);
}

.price-list strong {
  color: #000;
  white-space: nowrap;
}

.fine-print {
  margin: 24px 0 0;
  text-align: center;
  font-size: 12px;
}

.map-banner {
  position: relative;
  padding: clamp(62px, 10vw, 110px) 18px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(42, 20, 58, 0.72), rgba(0, 0, 0, 0.5)),
    url("assets/footer-bg.jpg") center / cover;
  background-attachment: fixed;
}

.map-banner::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.map-banner .eyebrow,
.map-banner h2,
.map-banner p {
  color: #fff;
}

.map-content {
  position: relative;
  width: min(860px, 100%);
  margin: 0 auto;
}

.map-embed {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin: clamp(28px, 5vw, 48px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.32);
  aspect-ratio: 16 / 7;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(0.96) saturate(0.9);
}

.site-footer {
  color: #dfdfdf;
  background:
    radial-gradient(circle at 12% 0%, rgba(124, 97, 164, 0.3), transparent 30%),
    var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 42px;
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0 36px;
  border-top: 1px solid rgba(183, 143, 240, 0.22);
}

.site-footer p,
.site-footer a {
  color: #dfdfdf;
}

.site-footer a:hover {
  color: var(--accent-light);
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--accent-light) !important;
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: 20px 0 34px;
  border-top: 1px solid rgba(183, 143, 240, 0.22);
}

.legal p {
  margin: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.instagram-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-page {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0 clamp(70px, 10vw, 120px);
}

.legal-page h1 {
  font-size: clamp(34px, 5vw, 54px);
}

.legal-content {
  margin-top: 30px;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin: 30px 0 10px;
  font-size: 22px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 18px;
}

.legal-content p {
  text-align: left;
}

@media (max-width: 980px) {
  .site-nav a {
    padding-inline: 9px;
  }

  .site-nav .nav-appointment {
    margin-left: 8px;
    padding-inline: 12px;
  }

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

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

@media (min-width: 761px) and (max-width: 1100px) {
  .hero-slide {
    min-height: clamp(500px, 66vw, 720px);
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 82px;
  }

  .site-header {
    min-height: 82px;
    padding-inline: 16px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 112px;
  }

  .mobile-appointment {
    display: inline-flex;
    margin-left: auto;
  }

  .menu-button {
    display: block;
    margin-left: 8px;
  }

  .site-nav {
    position: fixed;
    inset: 82px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav .nav-appointment {
    display: none;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 0;
    aspect-ratio: 16 / 9;
    background: #111;
  }

  .hero-slide {
    min-height: auto;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: none;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .video-slide::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.14));
  }

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

  .team-grid {
    gap: 18px;
  }

  .actions,
  .legal {
    flex-direction: column;
  }

  .map-embed {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }

  .legal-links {
    justify-content: center;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .hero-slide {
    opacity: 1;
  }

  .brands {
    overflow-x: auto;
  }

  .brands-track {
    animation: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .lavender-trail {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 24px;
    height: 36px;
    opacity: 0.78;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(var(--trail-rotation, -22deg)) scale(1);
    animation: lavenderTrail 1s ease-out forwards;
    will-change: transform, opacity;
  }

  .lavender-trail::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 10px;
    width: 2px;
    height: 25px;
    border-radius: 99px;
    background: linear-gradient(180deg, rgba(115, 145, 122, 0.8), rgba(72, 104, 82, 0.18));
    transform: rotate(9deg);
    transform-origin: bottom;
  }

  .lavender-trail::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 4px;
    width: 5px;
    height: 7px;
    border-radius: 70% 70% 60% 60%;
    background: rgba(133, 94, 177, 0.9);
    box-shadow:
      -5px 5px 0 -1px rgba(183, 143, 240, 0.92),
      5px 6px 0 -1px rgba(124, 97, 164, 0.86),
      -4px 12px 0 -1px rgba(151, 111, 199, 0.84),
      5px 14px 0 -1px rgba(191, 156, 238, 0.82),
      -2px 20px 0 -1px rgba(124, 97, 164, 0.68),
      4px 23px 0 -2px rgba(183, 143, 240, 0.58),
      0 0 14px 2px rgba(183, 143, 240, 0.25);
  }
}

@keyframes lavenderTrail {
  0% {
    opacity: 0.72;
    transform: translate(-50%, -50%) rotate(var(--trail-rotation, -22deg)) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -72%) rotate(calc(var(--trail-rotation, -22deg) + 18deg)) scale(0.35);
  }
}
