:root {
  --ink: #191513;
  --muted: #6e6561;
  --paper: #fbf8f3;
  --ivory: #fffdfa;
  --rose: #c9847c;
  --wine: #6d3438;
  --teal: #173f3a;
  --gold: #d9b46d;
  --charcoal: #141414;
  --line: rgba(25, 21, 19, 0.13);
  --shadow: 0 24px 70px rgba(30, 22, 18, 0.18);
  --hair-visibility: 0;
  --hair-y: -34vh;
  --hair-drift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

body *,
button,
input,
select,
textarea {
  font-family: "Inter", Arial, sans-serif !important;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--charcoal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--charcoal);
}

.nav {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0;
  padding: 24px 0;
  transform: translateX(-50%);
}

.brand,
.nav-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 4px 14px rgba(25, 21, 19, 0.12);
  object-fit: contain;
}

.nav-actions {
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-actions a:not(.book-button) {
  opacity: 0.88;
}

.book-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.book-button {
  padding: 0 22px;
  background: #fff;
  color: var(--ink);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 100%;
  margin: 0;
  padding: clamp(74px, 11vw, 120px) 20px 42px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--wine);
}

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

h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.primary-action {
  padding: 0 28px;
  background: var(--rose);
  color: #fff;
  box-shadow: 0 16px 36px rgba(111, 47, 49, 0.35);
}

.secondary-action {
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.book-button:hover,
.primary-action:hover,
.secondary-action:hover,
.text-link:hover {
  transform: translateY(-2px);
}

main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

main > section {
  position: relative;
  z-index: 1;
}

.hair-scroll-layer {
  position: fixed;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--hair-visibility);
  mix-blend-mode: multiply;
  transition: opacity 220ms ease;
}

.hair-strand {
  position: absolute;
  top: -42vh;
  left: var(--hair-x);
  width: var(--hair-width);
  height: var(--hair-height);
  border-radius: 48% 52% 46% 54% / 60% 50% 50% 40%;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 18%, rgba(219, 174, 100, 0.42) 37%, rgba(91, 51, 32, 0.3) 55%, rgba(255, 240, 205, 0.2) 72%, transparent 100%);
  box-shadow:
    inset 10px 0 18px rgba(255, 255, 255, 0.12),
    inset -18px 0 28px rgba(86, 43, 31, 0.12),
    0 28px 80px rgba(80, 44, 34, 0.12);
  filter: blur(0.15px);
  transform:
    translate3d(calc(var(--hair-drift) + var(--hair-offset-x)), calc(var(--hair-y) + var(--hair-offset-y)), 0)
    rotate(var(--hair-rotate));
  transform-origin: 50% 0%;
  will-change: transform, opacity;
}

.hair-strand::before,
.hair-strand::after {
  content: "";
  position: absolute;
  inset: 8% 18% 10% 24%;
  border-left: 2px solid rgba(255, 250, 232, 0.18);
  border-right: 1px solid rgba(70, 38, 26, 0.12);
  border-radius: 50%;
  transform: rotate(5deg);
}

.hair-strand::after {
  inset: 4% 35% 7% 9%;
  border-left-color: rgba(145, 92, 52, 0.2);
  border-right-color: rgba(255, 255, 255, 0.16);
  transform: rotate(-7deg);
}

.hair-strand-a {
  --hair-x: 5vw;
  --hair-width: clamp(58px, 7vw, 110px);
  --hair-height: clamp(500px, 72vh, 880px);
  --hair-offset-x: -34px;
  --hair-offset-y: 0px;
  --hair-rotate: -18deg;
}

.hair-strand-b {
  --hair-x: 24vw;
  --hair-width: clamp(40px, 5vw, 82px);
  --hair-height: clamp(390px, 62vh, 760px);
  --hair-offset-x: 20px;
  --hair-offset-y: -160px;
  --hair-rotate: 16deg;
  opacity: 0.7;
}

.hair-strand-c {
  --hair-x: 45vw;
  --hair-width: clamp(66px, 8vw, 128px);
  --hair-height: clamp(540px, 78vh, 920px);
  --hair-offset-x: -10px;
  --hair-offset-y: -70px;
  --hair-rotate: 8deg;
  opacity: 0.8;
}

.hair-strand-d {
  --hair-x: 70vw;
  --hair-width: clamp(50px, 6vw, 96px);
  --hair-height: clamp(480px, 70vh, 840px);
  --hair-offset-x: 24px;
  --hair-offset-y: -230px;
  --hair-rotate: -14deg;
  opacity: 0.75;
}

.hair-strand-e {
  --hair-x: 88vw;
  --hair-width: clamp(62px, 7vw, 118px);
  --hair-height: clamp(520px, 76vh, 900px);
  --hair-offset-x: -8px;
  --hair-offset-y: -20px;
  --hair-rotate: 20deg;
}

.hair-strand-f {
  --hair-x: 56vw;
  --hair-width: clamp(34px, 4vw, 68px);
  --hair-height: clamp(360px, 58vh, 700px);
  --hair-offset-x: 52px;
  --hair-offset-y: -320px;
  --hair-rotate: -7deg;
  opacity: 0.55;
}

.intro-band,
.hairdresser-section,
.work-section,
.booking-band,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 6vw, 86px);
  padding: clamp(70px, 9vw, 118px) 0 48px;
  align-items: end;
}

.intro-copy h2,
.editorial-copy h2,
.section-heading h1,
.section-heading h2,
.booking-band h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.intro-text,
.editorial-copy p,
.hairdresser-heading > p,
.hairdresser-card span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.intro-text {
  margin-bottom: 4px;
}

.hairdresser-section {
  padding: clamp(58px, 8vw, 104px) 0 clamp(78px, 10vw, 128px);
}

.hairdresser-heading {
  align-items: start;
  margin-bottom: 28px;
}

.hairdresser-heading > p {
  max-width: 470px;
  margin: 0;
}

.hairdresser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.hairdresser-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(25, 21, 19, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.94), rgba(245, 234, 216, 0.7));
  box-shadow: 0 20px 55px rgba(30, 22, 18, 0.09);
}

.hairdresser-card img {
  width: 100%;
  height: clamp(420px, 46vw, 560px);
  object-fit: cover;
  object-position: center top;
}

.hairdresser-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.18), rgba(255, 253, 250, 0.58));
  backdrop-filter: blur(2px);
}

.hairdresser-card p {
  margin: 0 0 9px;
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hairdresser-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  color: var(--ink);
  line-height: 0.96;
}

.hairdresser-card span {
  display: block;
  color: rgba(255, 253, 250, 0.92);
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-weight: 800;
  transition: transform 180ms ease;
}

.text-link::after {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.work-section {
  padding-bottom: clamp(78px, 10vw, 132px);
}

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

.section-heading h1,
.section-heading h2 {
  max-width: 720px;
}

.carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(25, 21, 19, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.74);
  box-shadow: 0 18px 45px rgba(30, 22, 18, 0.14);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.circle-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 10px 26px rgba(30, 22, 18, 0.08);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.circle-button:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--wine);
}

.carousel-count {
  min-width: 70px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.carousel-shell {
  position: relative;
  overflow: hidden;
  min-height: clamp(450px, 56vw, 650px);
  border: 1px solid rgba(25, 21, 19, 0.1);
  user-select: none;
  background:
    radial-gradient(circle at 50% 38%, rgba(217, 180, 109, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 250, 0.95), rgba(245, 238, 231, 0.95));
}

.carousel-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 44px;
  width: min(74vw, 820px);
  height: min(19vw, 160px);
  border: 1px solid rgba(109, 52, 56, 0.16);
  border-radius: 50%;
  transform: translateX(-50%);
}

.carousel-stage {
  position: relative;
  height: clamp(450px, 56vw, 650px);
  perspective: 1200px;
  outline: none;
  cursor: grab;
  touch-action: pan-y;
}

.carousel-stage:active {
  cursor: grabbing;
}

.carousel-stage:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(109, 52, 56, 0.45);
}

.orbit-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(230px, 26vw, 360px);
  height: clamp(330px, 38vw, 520px);
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 26px 70px rgba(25, 21, 19, 0.24);
  opacity: var(--opacity, 0);
  pointer-events: var(--pointer, none);
  transform:
    translate(-50%, -50%)
    translateX(var(--x, 0))
    translateY(var(--y, 0))
    translateZ(var(--z, 0))
    rotateY(var(--rotate, 0deg))
    scale(var(--scale, 0.6));
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(0.2, 0.84, 0.2, 1), opacity 450ms ease, filter 450ms ease;
  z-index: var(--z-index, 1);
  filter: saturate(var(--saturate, 0.78)) blur(var(--blur, 0));
}

.orbit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.74) 100%);
}

.orbit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  transition: transform 700ms ease;
}

.orbit-card.is-active {
  border: 8px solid #fff;
  border-radius: 2px;
  box-shadow: 0 32px 95px rgba(25, 21, 19, 0.34);
}

.orbit-card.is-active img {
  transform: scale(1.035);
}

.orbit-card figcaption {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.booking-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 52px;
  padding: clamp(34px, 5vw, 58px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(20, 20, 20, 0.92), rgba(23, 63, 58, 0.92)),
    url("Assets/Works/photo_2025-12-29_14-51-40.jpg");
  background-size: cover;
  background-position: center;
}

.primary-action.light {
  flex: 0 0 auto;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 34px;
  color: var(--muted);
  font-size: 0.92rem;
}

footer p {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 900px) {
  .nav {
    width: min(100% - 28px, 1180px);
    padding-top: 16px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-actions a:not(.book-button) {
    display: none;
  }

  .intro-band,
  .hairdresser-section,
  .work-section,
  .booking-band,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .intro-band,
  .booking-band {
    grid-template-columns: 1fr;
  }

  .hairdresser-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .hairdresser-heading {
    display: grid;
    gap: 18px;
  }

  .booking-band {
    display: grid;
  }

  .carousel-shell,
  .carousel-stage {
    min-height: 560px;
    height: 560px;
  }

  .orbit-card {
    width: min(62vw, 320px);
    height: 450px;
  }
}

@media (min-width: 901px) and (max-width: 1220px) {
  .hairdresser-card img {
    height: 430px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 0.78rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .hero-content {
    padding: 70px 14px 18px;
  }

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

  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hairdresser-section {
    padding-block: 48px 70px;
  }

  .hairdresser-card {
    border-radius: 20px;
  }

  .hairdresser-card img {
    height: 390px;
  }

  .hairdresser-card div {
    padding: 18px;
  }

  .hairdresser-card span,
  .hairdresser-heading > p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero .hero-actions {
    width: auto;
    gap: 10px;
  }

  .hero .primary-action,
  .hero .secondary-action {
    width: auto;
    min-width: 126px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .intro-copy h2,
  .section-heading h1,
  .section-heading h2,
  .booking-band h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .section-heading {
    display: block;
  }

  .carousel-controls {
    margin-top: 24px;
  }

  .carousel-shell,
  .carousel-stage {
    min-height: 520px;
    height: 520px;
  }

  .carousel-shell::before {
    bottom: 62px;
    width: 112vw;
    height: 150px;
  }

  .orbit-card {
    width: min(76vw, 300px);
    height: 420px;
  }

  .booking-band {
    margin-bottom: 34px;
  }

  footer {
    display: block;
  }

  footer p {
    margin-bottom: 12px;
  }
}

.language-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 64px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 244, 232, 0.44);
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 250, 242, 0.12);
  box-shadow: none;
  font: inherit;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.language-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 244, 232, 0.78);
  background: rgba(255, 250, 242, 0.2);
}

.language-toggle:focus-visible {
  outline: 3px solid rgba(125, 64, 74, 0.28);
  outline-offset: 3px;
}

.language-toggle span {
  opacity: 0.48;
  transition: opacity 180ms ease;
}

.language-toggle span.is-active {
  opacity: 1;
}

.language-toggle i {
  width: 1px;
  height: 12px;
  background: currentColor;
  opacity: 0.32;
}

.site-header.page-header .language-toggle,
.booking-topbar .language-toggle {
  color: var(--ink);
  border-color: rgba(25, 21, 19, 0.18);
  background: rgba(255, 250, 242, 0.72);
}

.booking-topbar .language-toggle {
  margin-left: auto;
}

.language-toggle-floating {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  color: var(--ink);
  border-color: rgba(25, 21, 19, 0.18);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 10px 28px rgba(54, 42, 36, 0.14);
}

@media (max-width: 560px) {
  .language-toggle {
    min-width: 56px;
    min-height: 32px;
    gap: 5px;
    padding-inline: 7px;
    font-size: 0.59rem;
  }
}
