:root {
  --black: #050505;
  --white: #ffffff;
  --cream: #f7f2ea;
  --coral: #ff675f;
  --coral-dark: #f2574f;
  --ink: #111111;
  --muted: #6d6962;
  --line: #151515;
  --font: "Inter", Arial, sans-serif;
  --logo: "Bangers", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.35;
  overflow-x: hidden;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-enabled .hero-content h1,
.reveal-enabled .hero-pill,
.reveal-enabled .service-card,
.reveal-enabled .gallery-mosaic figure,
.reveal-enabled .care-panel,
.reveal-enabled .review-quotes figure,
.reveal-enabled .booking-board li,
.reveal-enabled .insights-visual .insight-row a,
.reveal-enabled .page-card,
.reveal-enabled .article-block,
.reveal-enabled .related-card,
.reveal-enabled .footer-grid > div {
  opacity: 0;
}

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

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

.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 3.5vw, 56px);
  color: var(--white);
}

.left-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
}

.header-actions {
  justify-content: flex-end;
  gap: 16px;
}

.left-nav a {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 900;
  text-transform: lowercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

.logo {
  font-family: var(--logo);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: .78;
  letter-spacing: .03em;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
  white-space: nowrap;
}

.appointment-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--black);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 900;
  text-transform: lowercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  transition: transform .18s ease, background .18s ease;
}

.appointment-pill:hover {
  transform: translateY(-2px);
  background: var(--coral-dark);
}

.circle-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.circle-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transform-origin: 54% 46%;
  filter: saturate(1.08) contrast(1.03);
  animation: heroDrift 11s cubic-bezier(.35, 0, .2, 1) infinite alternate;
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .43) 0%, rgba(0, 0, 0, .08) 38%, rgba(0, 0, 0, .62) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .54) 0%, rgba(0, 0, 0, .06) 55%, rgba(0, 0, 0, .28) 100%);
  animation: shadePulse 7s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 clamp(22px, 3.5vw, 58px) 54px;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1210px;
  color: var(--white);
  font-size: clamp(64px, 6.9vw, 112px);
  font-weight: 900;
  line-height: .9;
  text-transform: lowercase;
  text-shadow: 0 8px 32px rgba(0, 0, 0, .45);
}

.hero-pill {
  margin-top: 28px;
}

.ticker {
  overflow: hidden;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--coral);
  color: var(--black);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 14px 0;
  animation: tickerMove 26s linear infinite;
}

.ticker span {
  font-size: clamp(18px, 2.4vw, 34px);
  font-weight: 900;
  text-transform: lowercase;
  white-space: nowrap;
}

.ticker span::after {
  content: "/";
  margin-left: 34px;
}

.color-section {
  padding: clamp(52px, 6.5vw, 92px) 0 clamp(54px, 7vw, 100px);
  background: var(--white);
  overflow: hidden;
}

.color-section h2,
.gallery-band h2,
.booking h2 {
  padding: 0 clamp(22px, 3.5vw, 58px);
  color: var(--coral);
  font-size: clamp(76px, 9vw, 154px);
  font-weight: 900;
  line-height: .82;
  text-transform: lowercase;
}

.service-row {
  --card-width: 380px;
  --card-gap: 34px;
  max-width: 100vw;
  margin-top: 42px;
  overflow: hidden;
}

.service-track {
  display: flex;
  width: max-content;
  gap: var(--card-gap);
  padding: 0 clamp(22px, 3.5vw, 58px);
  animation: serviceLoop 38s linear infinite;
  will-change: transform;
}

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

.service-card {
  flex: 0 0 var(--card-width);
  min-height: 560px;
  border: 2px solid var(--line);
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 0 var(--black);
}

.service-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  border-bottom: 2px solid var(--line);
}

.card-copy {
  padding: 22px;
}

.card-copy strong {
  display: block;
  font-size: 27px;
  font-weight: 900;
  text-transform: lowercase;
}

.card-copy p,
.story-copy p,
.booking p,
.footer p {
  color: var(--muted);
  font-weight: 700;
}

.salon-story {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 760px;
  background: var(--black);
  color: var(--white);
}

.story-media img,
.story-media video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 92px);
}

.story-copy h2 {
  max-width: 620px;
  font-size: clamp(52px, 6vw, 100px);
  font-weight: 900;
  line-height: .88;
  text-transform: lowercase;
}

.story-copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: #e8e2d9;
  font-size: 20px;
}

.story-copy a {
  width: fit-content;
  margin-top: 32px;
  border-bottom: 3px solid var(--coral);
  color: var(--coral);
  font-size: 20px;
  font-weight: 900;
  text-transform: lowercase;
}

.experience-section {
  display: grid;
  grid-template-columns: .46fr .82fr 1fr;
  align-items: center;
  gap: clamp(24px, 4.5vw, 66px);
  padding: clamp(58px, 7vw, 110px) clamp(22px, 3.5vw, 58px);
  background: var(--white);
  border-bottom: 2px solid var(--line);
}

.experience-number {
  color: var(--coral);
  font-size: clamp(118px, 18vw, 280px);
  font-weight: 900;
  line-height: .78;
}

.experience-copy h2 {
  max-width: 760px;
  font-size: clamp(46px, 5.2vw, 84px);
  font-weight: 900;
  line-height: .86;
  text-transform: lowercase;
}

.experience-copy p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.experience-portrait {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0;
  padding: 12px;
  border: 2px solid var(--line);
  background: var(--black);
  box-shadow: 18px 18px 0 var(--coral);
  transform: rotate(-1.25deg);
}

.experience-portrait img {
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
}

.experience-portrait figcaption {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 900;
  line-height: .95;
  text-transform: lowercase;
}

.gallery-band {
  padding: clamp(54px, 7vw, 100px) 0;
  background: var(--cream);
  overflow: hidden;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 22px;
  margin-top: 44px;
  padding: 0 clamp(22px, 3.5vw, 58px);
}

.gallery-mosaic figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--white);
}

.gallery-mosaic figure.wide {
  grid-column: span 2;
}

.gallery-mosaic figure.tall {
  grid-row: span 2;
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.gallery-mosaic figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.gallery-mosaic figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  background: var(--coral);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
}

.booking {
  padding: clamp(54px, 7vw, 104px) clamp(22px, 3.5vw, 58px);
  background: var(--white);
}

.benefits {
  padding: clamp(56px, 7vw, 104px) clamp(22px, 3.5vw, 58px);
  background: var(--black);
  color: var(--white);
}

.benefits h2,
.testimonials h2,
.insights h2,
.footer-cta h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(54px, 7vw, 118px);
  font-weight: 900;
  line-height: .84;
  text-transform: lowercase;
}

.benefits h2 {
  color: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 2px solid rgba(255,255,255,.85);
  border-left: 2px solid rgba(255,255,255,.85);
}

.benefit-grid article {
  min-height: 270px;
  padding: 26px;
  border-right: 2px solid rgba(255,255,255,.85);
  border-bottom: 2px solid rgba(255,255,255,.85);
}

.benefit-grid span {
  display: block;
  color: var(--coral);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.benefit-grid strong {
  display: block;
  margin-top: 28px;
  font-size: 24px;
  font-weight: 900;
  text-transform: lowercase;
}

.benefit-grid p {
  margin: 12px 0 0;
  color: #e8e2d9;
  font-weight: 800;
}

.testimonials {
  padding: clamp(56px, 7vw, 104px) clamp(22px, 3.5vw, 58px);
  background: var(--white);
}

.testimonial-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
}

.testimonials h2,
.insights h2,
.footer-cta h2 {
  color: var(--coral);
}

.text-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  border-bottom: 3px solid var(--line);
  font-weight: 900;
  text-transform: lowercase;
  white-space: nowrap;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 44px;
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
}

.testimonial-row figure {
  min-height: 310px;
  margin: 0;
  padding: 28px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.testimonial-row blockquote {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 900;
  line-height: .98;
}

.testimonial-row figcaption {
  margin-top: 24px;
  color: var(--coral);
  font-weight: 900;
  text-transform: lowercase;
}

.booking h2 {
  padding: 0;
}

.booking ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
  list-style: none;
}

.booking li {
  min-height: 220px;
  padding: 24px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.booking span {
  display: block;
  color: var(--coral);
  font-size: 46px;
  font-weight: 900;
  line-height: .9;
}

.booking strong {
  display: block;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 900;
  text-transform: lowercase;
}

.booking p {
  margin: 8px 0 0;
}

.insights {
  padding: clamp(56px, 7vw, 104px) clamp(22px, 3.5vw, 58px);
  background: var(--cream);
}

.insight-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.insight-row a {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 2px solid var(--line);
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease;
}

.insight-row a:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 0 var(--black);
}

.insight-row span {
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
  text-transform: lowercase;
}

.insight-row strong {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900;
  line-height: .95;
  text-transform: lowercase;
}

.care-editorial {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  min-height: auto;
}

.care-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.care-heading p {
  max-width: 520px;
  margin: 0;
  color: #e8e2d9;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
}

.care-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.care-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(132px, 190px) 1fr;
  align-items: stretch;
  min-height: 164px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.72);
  background: #111;
}

.care-panel.tall {
  grid-row: auto;
}

.care-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .7s ease;
}

.care-panel::after {
  content: none;
}

.care-panel:hover img {
  transform: scale(1.08);
  filter: saturate(1.22) contrast(1.06);
}

.care-panel div {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 2.5vw, 30px);
}

.care-panel span {
  display: block;
  color: var(--coral);
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 900;
  line-height: .82;
}

.care-panel strong {
  display: block;
  max-width: 360px;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 900;
  line-height: .9;
  text-transform: lowercase;
}

.review-editorial {
  overflow: hidden;
}

.review-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 58px);
  margin-top: 44px;
}

.review-image-stack {
  position: relative;
  min-height: 620px;
}

.review-image-stack img {
  position: absolute;
  width: 48%;
  height: 68%;
  object-fit: cover;
  border: 2px solid var(--line);
  box-shadow: 0 18px 0 var(--black);
  animation: floatReview 5.5s ease-in-out infinite alternate;
}

.review-image-stack img:nth-child(1) {
  left: 0;
  top: 8%;
}

.review-image-stack img:nth-child(2) {
  right: 8%;
  top: 0;
  animation-delay: .6s;
}

.review-image-stack img:nth-child(3) {
  left: 28%;
  bottom: 0;
  animation-delay: 1.1s;
}

.review-quotes {
  display: grid;
  gap: 18px;
  align-content: center;
}

.review-quotes figure {
  margin: 0;
  padding: clamp(22px, 2.5vw, 34px);
  border: 2px solid var(--line);
  background: var(--white);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .22s ease, box-shadow .22s ease;
}

.review-quotes figure:hover {
  transform: translateX(-10px);
  box-shadow: 14px 14px 0 var(--coral);
}

.review-quotes blockquote {
  margin: 0;
  max-width: 680px;
  font-size: clamp(25px, 3.15vw, 45px);
  font-weight: 900;
  line-height: .92;
  text-transform: lowercase;
}

.review-quotes figcaption {
  margin-top: 18px;
  color: var(--coral);
  font-weight: 900;
  text-transform: lowercase;
}

.booking-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.74)),
    url("assets/gallery-balayage-side.jpg") center / cover;
}

.booking-visual::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 50%;
  height: 2px;
  background: var(--coral);
  transform: rotate(-4deg);
  opacity: .72;
}

.booking-board {
  position: relative;
  z-index: 1;
}

.booking-board li {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.booking-board li:hover {
  transform: translateY(-8px) rotate(-1deg);
  background: var(--coral);
  box-shadow: 0 16px 0 var(--black);
}

.booking-board li:hover span,
.booking-board li:hover p {
  color: var(--black);
}

.insights-visual {
  background: var(--black);
}

.insights-visual h2 {
  color: var(--coral);
}

.insights-visual .insight-row {
  grid-template-columns: 1.1fr .9fr;
  align-items: stretch;
}

.insights-visual .insight-row a {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  justify-content: flex-end;
  padding: 0;
  border-color: rgba(255,255,255,.72);
  background: #111;
}

.insights-visual .insight-row img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), opacity .7s ease;
}

.insights-visual .insight-row a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.78));
}

.insights-visual .insight-row a:hover img {
  transform: scale(1.07);
  opacity: .9;
}

.insights-visual .insight-row span,
.insights-visual .insight-row strong {
  position: relative;
  z-index: 1;
  margin: 0 24px;
}

.insights-visual .insight-row span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 10px;
  background: var(--coral);
  color: var(--black);
}

.insights-visual .insight-row strong {
  max-width: 560px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: .9;
}

.subpage-main {
  background: var(--white);
}

.subpage-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: end;
  gap: clamp(26px, 5vw, 76px);
  padding: 118px clamp(22px, 3.5vw, 58px) clamp(48px, 7vw, 96px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.25)),
    var(--hero-image, url("assets/hero-salon-vivid.jpg")) center / cover;
  transform: scale(1.06);
  animation: heroDrift 13s cubic-bezier(.35, 0, .2, 1) infinite alternate;
}

.subpage-hero > * {
  position: relative;
  z-index: 1;
}

.subpage-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--coral);
  font-size: clamp(17px, 1.7vw, 26px);
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
}

.subpage-hero h1 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(58px, 8vw, 128px);
  font-weight: 900;
  line-height: .84;
  text-transform: lowercase;
}

.subpage-hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: #f3eee7;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 800;
}

.subpage-visual {
  justify-self: end;
  width: min(520px, 100%);
  padding: 12px;
  border: 2px solid rgba(255,255,255,.82);
  background: var(--black);
  box-shadow: 18px 18px 0 var(--coral);
  transform: rotate(-1.4deg);
}

.subpage-visual img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.subpage-visual figcaption {
  margin-top: 12px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  line-height: .95;
  text-transform: lowercase;
}

.page-band {
  padding: clamp(56px, 7vw, 104px) clamp(22px, 3.5vw, 58px);
  border-bottom: 2px solid var(--line);
}

.page-band.dark {
  background: var(--black);
  color: var(--white);
}

.page-band.cream {
  background: var(--cream);
}

.page-band h2 {
  max-width: 1080px;
  font-size: clamp(50px, 7vw, 112px);
  font-weight: 900;
  line-height: .86;
  text-transform: lowercase;
}

.page-band p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 800;
}

.page-band.dark p {
  color: #e8e2d9;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.page-card {
  min-height: 255px;
  padding: 24px;
  border: 2px solid currentColor;
  background: var(--white);
  color: var(--black);
  transition: transform .22s ease, box-shadow .22s ease;
}

.page-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 16px 0 var(--coral);
}

.page-card span {
  display: block;
  color: var(--coral);
  font-size: 42px;
  font-weight: 900;
  line-height: .9;
}

.page-card strong {
  display: block;
  margin-top: 22px;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 900;
  line-height: .92;
  text-transform: lowercase;
}

.page-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.visual-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.visual-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.visual-stack img {
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  border: 2px solid var(--line);
  transition: transform .55s cubic-bezier(.2, .8, .2, 1), filter .55s ease;
}

.visual-stack img:hover {
  transform: scale(1.035) rotate(-1deg);
  filter: saturate(1.12);
}

.visual-stack img:first-child {
  grid-column: span 2;
  min-height: 310px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-block {
  padding: clamp(24px, 3vw, 40px);
  border: 2px solid var(--line);
  background: var(--white);
}

.article-block h2,
.article-block h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 900;
  line-height: .88;
  text-transform: lowercase;
}

.article-block p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 750;
}

.article-block ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.article-block li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 900;
}

.article-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  background: var(--coral);
}

.article-aside {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 16px;
}

.aside-card {
  padding: 22px;
  border: 2px solid var(--line);
  background: var(--black);
  color: var(--white);
}

.aside-card strong {
  display: block;
  color: var(--coral);
  font-size: 34px;
  font-weight: 900;
  line-height: .9;
  text-transform: lowercase;
}

.aside-card p,
.aside-card a {
  display: block;
  margin: 14px 0 0;
  color: #f3eee7;
  font-weight: 900;
  text-transform: lowercase;
}

.related-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.related-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.72);
  background: #111;
}

.related-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .65s cubic-bezier(.2, .8, .2, 1), opacity .65s ease;
}

.related-card:hover img {
  transform: scale(1.07);
  opacity: .9;
}

.related-card strong,
.related-card span {
  position: relative;
  z-index: 1;
  margin: 0 20px;
}

.related-card span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 10px;
  background: var(--coral);
  color: var(--black);
  font-weight: 900;
  text-transform: lowercase;
}

.related-card strong {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 900;
  line-height: .9;
  text-transform: lowercase;
}

.footer {
  padding: clamp(44px, 6vw, 88px) clamp(22px, 3.5vw, 58px) 34px;
  background: var(--black);
  color: var(--white);
}

.footer-cta {
  display: grid;
  grid-template-columns: .55fr 1fr auto;
  align-items: end;
  gap: clamp(24px, 5vw, 70px);
  padding-bottom: clamp(42px, 6vw, 76px);
  border-bottom: 2px solid rgba(255,255,255,.18);
}

.footer-logo {
  font-size: 36px;
  text-shadow: none;
}

.footer p {
  max-width: 680px;
  color: #ddd7ce;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 34px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 16px;
  font-weight: 900;
  text-transform: lowercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 9px 0 0;
  color: #f4eee6;
  font-size: 15px;
  font-weight: 900;
  text-transform: lowercase;
}

.reveal-enabled .hero.is-visible .hero-content h1 {
  animation: headlineLift .82s cubic-bezier(.2, .8, .2, 1) .1s both;
}

.reveal-enabled .hero.is-visible .hero-pill {
  animation: buttonPop .55s cubic-bezier(.18, .9, .22, 1.2) .44s both;
}

.reveal-enabled .color-section.is-visible h2,
.reveal-enabled .gallery-band.is-visible h2,
.reveal-enabled .booking-visual.is-visible h2,
.reveal-enabled .insights-visual.is-visible h2 {
  animation: sectionTitleSweep .74s cubic-bezier(.2, .8, .2, 1) both;
}

.reveal-enabled .color-section.is-visible .service-card {
  animation: cardRise .62s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(var(--i) * 70ms);
}

.reveal-enabled .salon-story.is-visible .story-media {
  animation: mediaWipe .88s cubic-bezier(.2, .8, .2, 1) both;
}

.reveal-enabled .salon-story.is-visible .story-copy > * {
  animation: sideTextIn .68s cubic-bezier(.2, .8, .2, 1) both;
}

.reveal-enabled .salon-story.is-visible .story-copy > *:nth-child(2) {
  animation-delay: .12s;
}

.reveal-enabled .salon-story.is-visible .story-copy > *:nth-child(3) {
  animation-delay: .22s;
}

.reveal-enabled .experience-section.is-visible .experience-number {
  animation: numberPunch .76s cubic-bezier(.17, .84, .32, 1.2) both;
}

.reveal-enabled .experience-section.is-visible .experience-copy {
  animation: copyReveal .74s cubic-bezier(.2, .8, .2, 1) .12s both;
}

.reveal-enabled .experience-section.is-visible .experience-portrait {
  animation: portraitSnap .78s cubic-bezier(.18, .9, .22, 1.15) .22s both;
}

.reveal-enabled .gallery-band.is-visible .gallery-mosaic figure {
  animation: tileFlip .68s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(var(--i) * 80ms);
}

.reveal-enabled .care-editorial.is-visible .care-panel {
  animation: careSlide .62s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(var(--i) * 110ms);
}

.reveal-enabled .review-editorial.is-visible .review-image-stack img {
  animation-name: reviewDrop, floatReview;
  animation-duration: .82s, 5.5s;
  animation-timing-function: cubic-bezier(.2, .8, .2, 1), ease-in-out;
  animation-delay: calc(var(--i, 0) * 110ms), 1s;
  animation-fill-mode: both, none;
  animation-iteration-count: 1, infinite;
  animation-direction: normal, alternate;
}

.reveal-enabled .review-editorial.is-visible .review-quotes figure {
  animation: quoteSlide .62s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(var(--i) * 100ms);
}

.reveal-enabled .booking-visual.is-visible .booking-board li {
  animation: stepCascade .66s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(var(--i) * 95ms);
}

.reveal-enabled .booking-visual.is-visible::after {
  animation: lineDraw .9s cubic-bezier(.2, .8, .2, 1) .18s both;
}

.reveal-enabled .insights-visual.is-visible .insight-row a {
  animation: insightLift .72s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(var(--i) * 120ms);
}

.reveal-enabled .footer.is-visible .footer-grid > div {
  animation: cardRise .55s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(var(--i) * 80ms);
}

.reveal-enabled .subpage-hero.is-visible .subpage-copy {
  animation: headlineLift .82s cubic-bezier(.2, .8, .2, 1) .08s both;
}

.reveal-enabled .subpage-hero.is-visible .subpage-visual {
  animation: portraitSnap .8s cubic-bezier(.18, .9, .22, 1.15) .24s both;
}

.reveal-enabled .page-band.is-visible .page-card,
.reveal-enabled .page-band.is-visible .article-block,
.reveal-enabled .page-band.is-visible .related-card {
  animation: cardRise .62s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(var(--i) * 85ms);
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes serviceLoop {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * ((var(--card-width) + var(--card-gap)) * 5))); }
}

@keyframes heroDrift {
  0% { transform: scale(1.08) translate3d(-1.2%, .6%, 0); }
  55% { transform: scale(1.17) translate3d(1.6%, -1.2%, 0); }
  100% { transform: scale(1.24) translate3d(-2.4%, -2.1%, 0); }
}

@keyframes shadePulse {
  from { opacity: .88; }
  to { opacity: 1; }
}

@keyframes headlineLift {
  from { opacity: 0; transform: translateY(42px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes buttonPop {
  from { opacity: 0; transform: translateY(20px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes sectionTitleSweep {
  from { opacity: 0; transform: translateX(-72px); clip-path: inset(0 100% 0 0); }
  to { opacity: 1; transform: translateX(0); clip-path: inset(0 0 0 0); }
}

@keyframes cardRise {
  from { opacity: 0; transform: translateY(38px) rotate(-1.5deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes mediaWipe {
  from { clip-path: inset(0 100% 0 0); transform: scale(1.04); }
  to { clip-path: inset(0 0 0 0); transform: scale(1); }
}

@keyframes sideTextIn {
  from { opacity: 0; transform: translateX(44px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes numberPunch {
  from { opacity: 0; transform: translateY(30px) scale(.82); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes copyReveal {
  from { opacity: 0; transform: translateY(30px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes portraitSnap {
  from { opacity: 0; transform: translateX(44px) rotate(5deg) scale(.92); }
  to { opacity: 1; transform: translateX(0) rotate(-1.25deg) scale(1); }
}

@keyframes tileFlip {
  from { opacity: 0; transform: translateY(34px) rotateX(18deg) scale(.96); transform-origin: 50% 100%; }
  to { opacity: 1; transform: translateY(0) rotateX(0) scale(1); }
}

@keyframes careSlide {
  from { opacity: 0; transform: translateX(52px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes reviewDrop {
  from { opacity: 0; transform: translateY(-30px) rotate(-7deg) scale(.96); }
  to { opacity: 1; transform: translateY(0) rotate(-2deg) scale(1); }
}

@keyframes quoteSlide {
  from { opacity: 0; transform: translateX(52px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes stepCascade {
  from { opacity: 0; transform: translateY(28px) rotate(-2deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes lineDraw {
  from { transform: rotate(-4deg) scaleX(0); transform-origin: 0 50%; }
  to { transform: rotate(-4deg) scaleX(1); transform-origin: 0 50%; }
}

@keyframes insightLift {
  from { opacity: 0; transform: translateY(44px) scale(.98); clip-path: inset(16% 0 0 0); }
  to { opacity: 1; transform: translateY(0) scale(1); clip-path: inset(0 0 0 0); }
}

@keyframes floatReview {
  from { transform: translateY(0) rotate(-2deg); }
  to { transform: translateY(-18px) rotate(2deg); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal-enabled .hero-content h1,
  .reveal-enabled .hero-pill,
  .reveal-enabled .service-card,
  .reveal-enabled .gallery-mosaic figure,
  .reveal-enabled .care-panel,
  .reveal-enabled .review-quotes figure,
  .reveal-enabled .booking-board li,
  .reveal-enabled .insights-visual .insight-row a,
  .reveal-enabled .footer-grid > div {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero-header {
    grid-template-columns: 1fr auto;
  }

  .left-nav {
    display: none;
  }

  .logo {
    justify-self: start;
  }

  .salon-story,
  .experience-section,
  .care-editorial,
  .subpage-hero,
  .visual-split,
  .article-layout,
  .review-stage,
  .benefit-grid,
  .testimonial-heading,
  .testimonial-row,
  .insight-row,
  .booking ol,
  .footer-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-media img,
  .story-media video {
    min-height: 430px;
  }

  .care-panels,
  .insights-visual .insight-row,
  .page-grid,
  .related-row {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .subpage-visual {
    justify-self: start;
    max-width: 520px;
  }

  .article-aside {
    position: static;
  }

  .care-panel,
  .care-panel.tall {
    min-height: 150px;
    grid-row: auto;
  }

  .care-panel {
    grid-template-columns: 118px 1fr;
  }

  .experience-portrait {
    max-width: 420px;
  }

  .review-image-stack {
    min-height: 390px;
  }

  .review-quotes blockquote {
    font-size: clamp(24px, 8vw, 38px);
  }

  .insights-visual .insight-row a {
    min-height: 360px;
  }

  .insights-visual .insight-row strong {
    font-size: clamp(28px, 8vw, 42px);
  }
}

@media (max-width: 620px) {
  .hero-header {
    padding: 18px;
  }

  .logo {
    font-size: 30px;
  }

  .header-actions .appointment-pill {
    display: none;
  }

  .icon-extra {
    display: none;
  }

  .circle-icon {
    width: 38px;
    height: 38px;
  }

  .hero-bg {
    object-position: center;
  }

  .hero-content {
    padding: 0 18px 42px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .appointment-pill {
    min-height: 52px;
    padding: 0 22px;
    font-size: 17px;
  }

  .color-section h2,
  .gallery-band h2,
  .booking h2 {
    font-size: clamp(60px, 20vw, 96px);
  }

  .service-row,
  .gallery-mosaic {
    --card-width: min(292px, 78vw);
  }

  .service-track {
    gap: 18px;
  }

  .service-card {
    min-height: 500px;
  }

  .service-card img {
    height: 340px;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 14px;
    padding: 0 18px;
  }

  .gallery-mosaic figure.wide,
  .gallery-mosaic figure.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .subpage-hero h1 {
    font-size: clamp(56px, 17vw, 86px);
  }

  .page-band h2 {
    font-size: clamp(46px, 15vw, 82px);
  }

  .visual-stack {
    grid-template-columns: 1fr;
  }

  .visual-stack img:first-child {
    grid-column: span 1;
  }

  .gallery-mosaic figure:first-child {
    grid-column: span 2;
  }

  .story-copy {
    padding: 44px 18px 52px;
  }

  .story-copy h2 {
    font-size: 56px;
  }

  .booking {
    padding-left: 18px;
    padding-right: 18px;
  }

  .experience-section,
  .benefits,
  .testimonials,
  .insights {
    padding-left: 18px;
    padding-right: 18px;
  }

  .experience-number {
    font-size: 120px;
  }

  .benefits h2,
  .testimonials h2,
  .insights h2,
  .footer-cta h2 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .testimonial-row figure,
  .benefit-grid article {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
