/* -------- tokens -------- */
:root {
  --bg: #fbf8f3;
  --bg-alt: #f1eae0;
  --surface: #ffffff;
  --ink: #1f1a17;
  --ink-rich: #131012;
  --ink-soft: #6b5d54;
  --rule: #e4dbcf;
  --rule-soft: #efe7da;
  --accent: #b89484;       /* dusty rose — pulled from logo */
  --accent-deep: #8a665a;  /* deeper rose for hover/contrast */
  --accent-soft: #e8d5cc;  /* pale rose for backgrounds */

  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: var(--sans); /* kept as alias — sans-serif everywhere */

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 48px);

  --radius: 4px;
  --radius-lg: 12px;
  --shadow-soft: 0 1px 2px rgba(31, 26, 23, 0.04),
    0 12px 40px rgba(31, 26, 23, 0.08);
  --shadow-card: 0 1px 2px rgba(31, 26, 23, 0.05),
    0 24px 56px -16px rgba(31, 26, 23, 0.18);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------- reset -------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 16px;
  z-index: 100;
}
.skip:focus {
  left: 16px;
  top: 16px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* -------- typography -------- */
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 700;
}

h1 em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 500;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent-deep);
  margin: 0 0 1.4em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* -------- buttons -------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 16px 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out),
    transform 0.35s var(--ease-out), border-color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
}

.btn--solid {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 6px 24px -8px rgba(31, 26, 23, 0.35);
}
.btn--solid:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(138, 102, 90, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 12px 26px;
  font-size: 0.76rem;
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(31, 26, 23, 0.35);
}

.btn--text {
  padding: 14px 0;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  border-radius: 0;
}
.btn--text:hover {
  border-bottom-color: var(--ink);
}

/* -------- nav -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.6);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(251, 248, 243, 0.85);
  border-bottom-color: var(--rule);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 82px;
  transition: height 0.4s var(--ease);
}
.nav.is-scrolled .nav__inner {
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
}

.brand__logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: width 0.4s var(--ease), height 0.4s var(--ease);
}
.nav.is-scrolled .brand__logo {
  width: 34px;
  height: 34px;
}
.brand__logo--footer {
  width: 56px;
  height: 56px;
  margin-bottom: 4px;
  filter: brightness(0) invert(1) opacity(0.92);
}

.brand__word {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent-deep);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover {
  color: var(--accent-deep);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s var(--ease);
}
.nav__phone:hover {
  color: var(--accent-deep);
}
.nav__phone-icon {
  color: var(--accent-deep);
  flex-shrink: 0;
}

.nav__cta {
  display: inline-flex;
}

/* mobile toggle */
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span:nth-child(1) {
  top: 14px;
}
.nav__toggle span:nth-child(2) {
  top: 20px;
}
.nav__toggle span:nth-child(3) {
  top: 26px;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px var(--gutter) 28px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
.mobile a {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 1.4rem;
}
.mobile a:last-child {
  border-bottom: 0;
}
.mobile__call {
  margin-top: 8px;
  color: var(--accent-deep);
}

/* -------- sections -------- */
.section {
  padding-block: clamp(88px, 12vw, 170px);
  position: relative;
}

.section--alt {
  background: var(--bg-alt);
}

.section__head {
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 88px);
  text-align: center;
}
.section__head .eyebrow {
  margin-bottom: 1.2em;
}
.section__head .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.section__head h2 {
  margin-bottom: 0.5em;
}
.section__head .section__lede {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 56ch;
  margin-inline: auto;
}

/* -------- hero -------- */
.hero {
  padding-block: clamp(60px, 9vw, 130px) clamp(60px, 9vw, 120px);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero__copy .lede {
  font-size: 1.1rem;
  max-width: 48ch;
  margin-block: 1.4em 2em;
}

.hero__actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3em;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.hero__meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.hero__image {
  aspect-ratio: 4 / 5;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-soft);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(42, 36, 32, 0.22)
  );
  pointer-events: none;
}

/* -------- carousel -------- */
.carousel {
  position: relative;
  width: 100%;
  height: clamp(560px, 88vh, 880px);
  overflow: hidden;
  background: var(--bg-alt);
}

.carousel__track {
  position: absolute;
  inset: 0;
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1400ms var(--ease-out);
  pointer-events: none;
}

.carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1.06);
  transition: transform 0ms linear;
}

.carousel__slide.is-active img {
  animation: kenBurns 8s var(--ease-out) forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

.carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.4) 65%,
      rgba(0, 0, 0, 0.85) 100%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.carousel__caption {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(170px, 22vh, 240px);
  max-width: 720px;
  color: #fff;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 900ms var(--ease-out) 200ms,
    opacity 900ms var(--ease-out) 200ms;
}

.carousel__slide.is-active .carousel__caption {
  transform: translateY(0);
  opacity: 1;
}

.carousel__caption .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1em;
}
.carousel__caption .eyebrow::before {
  background: rgba(255, 255, 255, 0.6);
}

.carousel__caption h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 0.4em;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}

.carousel__caption p {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 48ch;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.005em;
}

.carousel__cta {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(70px, 11vh, 120px);
  z-index: 5;
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 10px 36px -8px rgba(0, 0, 0, 0.4);
  will-change: transform;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.carousel__cta:hover,
.carousel__cta:focus-visible {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(184, 148, 132, 0.6);
}

.carousel__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(32px, 5vh, 56px);
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.carousel__dot {
  width: 24px;
  height: 2px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 400ms var(--ease-out), width 400ms var(--ease-out);
  border-radius: 1px;
}

.carousel__dot.is-active {
  background: #fff;
  width: 56px;
}

.carousel__dot:hover {
  background: rgba(255, 255, 255, 0.65);
}

.carousel__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.carousel__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(28px, 4vh, 56px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s var(--ease);
}
.carousel__scroll:hover {
  color: #fff;
}
.carousel__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 30%,
    rgba(255, 255, 255, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
}
.carousel__scroll-line::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 1px;
  height: 40%;
  background: #fff;
  animation: scrollDown 2.2s infinite var(--ease-out);
}
@keyframes scrollDown {
  0% { top: -40%; opacity: 0; }
  40% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@media (max-width: 640px) {
  .carousel__cta {
    left: var(--gutter);
    bottom: clamp(80px, 11vh, 110px);
  }
  .carousel__caption {
    bottom: clamp(180px, 26vh, 240px);
  }
  .carousel__scroll {
    display: none;
  }
}

/* -------- about -------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.about__label {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__label .eyebrow {
  margin-bottom: 0;
}
.about__image {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-card);
  position: relative;
}
.about__image::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 148, 132, 0.2);
  pointer-events: none;
  z-index: 2;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96);
  transition: transform 1.5s var(--ease-out);
}
.about__image:hover img {
  transform: scale(1.04);
}

.about__body h2 {
  max-width: 18ch;
  margin-bottom: 1em;
}
.about__body p {
  max-width: 62ch;
  font-size: 1.02rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}
.pillars h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.pillars p {
  font-size: 0.94rem;
  margin: 0;
}

/* -------- services -------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service {
  background: var(--surface);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 50%),
    rgba(184, 148, 132, 0.18) 0%,
    rgba(184, 148, 132, 0.05) 35%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-soft);
}
.service:hover::before {
  opacity: 1;
}

.service header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 16px;
  min-height: 2.6em;
  letter-spacing: -0.015em;
}
.service__price {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 0.95;
  margin: 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  position: relative;
}
.service__price::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.service ul {
  display: flex;
  flex-direction: column;
}
.service li {
  padding: 11px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.9rem;
  color: var(--ink-soft);
  position: relative;
  padding-left: 18px;
}
.service li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--accent);
  transform: translateY(-50%);
}
.service li:last-child {
  border-bottom: 0;
}

.service__book {
  align-self: flex-start;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

/* -------- booking modal -------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open {
  display: flex;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 16, 18, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal__panel {
  position: relative;
  background: var(--bg);
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 48px 44px 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.35);
  animation: modalIn 420ms var(--ease-out);
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}
.modal__close:hover {
  color: var(--ink);
}
.modal h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  margin: 4px 0 6px;
}
.modal__lede {
  color: var(--ink-soft);
  margin: 0 0 20px;
  font-size: 0.95rem;
}
.modal__form {
  display: flex;
  flex-direction: column;
}
.modal__form label {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.modal__form input,
.modal__form select,
.modal__form textarea {
  font: inherit;
  padding: 11px 14px;
  border: 1px solid var(--rule);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
  width: 100%;
}
.modal__form input:focus,
.modal__form select:focus,
.modal__form textarea:focus {
  outline: none;
  border-color: var(--accent-deep);
}
.modal__form textarea {
  resize: vertical;
  min-height: 84px;
  font-family: inherit;
}
.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
body.modal-open {
  overflow: hidden;
}

/* -------- team -------- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.stylist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.stylist__portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--accent-soft), var(--accent) 55%, var(--accent-deep));
  border-radius: var(--radius-lg);
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.stylist__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 20%,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 60%
  );
}
.stylist__portrait::after {
  content: attr(data-initial);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 4.2rem;
  color: rgba(255, 247, 240, 0.85);
  letter-spacing: 0.02em;
  position: relative;
}
.stylist:hover .stylist__portrait {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.stylist h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.stylist__role {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  margin: 0 0 8px;
}
.stylist p:not(.stylist__role) {
  font-size: 0.95rem;
  margin: 0;
}

/* -------- gallery -------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery__item {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  position: relative;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.gallery__item--tall {
  aspect-ratio: 3 / 5;
  margin-top: 48px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.94) brightness(0.98);
  transition: transform 1.2s var(--ease-out), filter 0.6s var(--ease-out);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 26, 23, 0) 50%,
    rgba(31, 26, 23, 0.5) 100%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}
.gallery__item:hover::after {
  opacity: 1;
}

.gallery__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* -------- lightbox -------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 24px;
}
.lightbox.is-open {
  display: flex;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox__close {
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}
.lightbox__nav--prev {
  left: 20px;
}
.lightbox__nav--next {
  right: 20px;
}
@media (max-width: 600px) {
  .lightbox__nav {
    width: 40px;
    height: 40px;
  }
  .lightbox__nav--prev {
    left: 8px;
  }
  .lightbox__nav--next {
    right: 8px;
  }
}

/* -------- reviews (Google) -------- */
.reviews {
  padding-block: clamp(60px, 8vw, 110px);
}
.reviews__head {
  margin-bottom: clamp(32px, 5vw, 56px);
}
.reviews__summary {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.reviews__rating {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.reviews__stars {
  position: relative;
  display: inline-block;
  width: 110px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 20'><path d='M11 0l2.9 6.6 7.1.7-5.3 4.8 1.6 7L11 15.5 4.7 19.1l1.6-7L1 7.3l7.1-.7z' fill='%23e6ddd1'/></svg>");
  background-repeat: repeat-x;
  background-size: 22px 20px;
}
.reviews__stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 20'><path d='M11 0l2.9 6.6 7.1.7-5.3 4.8 1.6 7L11 15.5 4.7 19.1l1.6-7L1 7.3l7.1-.7z' fill='%23f5b400'/></svg>");
  background-repeat: repeat-x;
  background-size: 22px 20px;
}
.reviews__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.reviews__link {
  color: var(--accent-deep);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.reviews__link:hover {
  border-bottom-color: var(--accent-deep);
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
}

.review {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out);
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-soft);
}
.review__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--accent-deep);
  flex-shrink: 0;
}
.review__who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.review__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review__date {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.review__google {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.9;
}
.review__stars {
  width: 88px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 20'><path d='M11 0l2.9 6.6 7.1.7-5.3 4.8 1.6 7L11 15.5 4.7 19.1l1.6-7L1 7.3l7.1-.7z' fill='%23f5b400'/></svg>");
  background-repeat: repeat-x;
  background-size: 18px 16px;
}
.review__text {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink);
  margin: 0;
}

/* -------- visit -------- */
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.visit__copy h2 {
  margin-bottom: 0.6em;
}
.visit__copy > p {
  max-width: 48ch;
  margin-bottom: 2.2em;
}

.visit__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin: 0 0 32px;
}
.visit__details dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.visit__details dd {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.55;
}
.visit__details a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.visit__details a:hover {
  border-bottom-color: var(--ink);
}

.visit__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.visit__socials a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.visit__socials a:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}

.visit__map {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius);
  overflow: hidden;
  background: #efe7da;
  box-shadow: var(--shadow-soft);
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(0.96);
}
.visit__directions {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--bg);
  color: var(--ink);
  padding: 10px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(42, 36, 32, 0.18);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.visit__directions:hover {
  background: var(--ink);
  color: var(--bg);
}

/* -------- contact -------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.contact__intro h2 {
  margin-bottom: 0.6em;
}
.contact__intro p {
  max-width: 44ch;
}

.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.contact__direct a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.3s var(--ease);
}
.contact__direct a:hover {
  color: var(--accent-deep);
}
.contact__direct span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}
.contact__direct strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.contact__form {
  background: var(--surface);
  padding: clamp(32px, 4.5vw, 52px);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}
.field label span {
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  opacity: 0.75;
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
  width: 100%;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(-45deg, transparent 50%, var(--ink) 50%);
  background-position: calc(100% - 14px) 18px, calc(100% - 8px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}

.contact__submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.contact__note {
  font-size: 0.85rem;
  margin: 0;
  max-width: 36ch;
}

.contact__success {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  background: var(--bg-alt);
  border-left: 2px solid var(--accent-deep);
  color: var(--ink);
  font-size: 0.95rem;
}

/* -------- footer -------- */
.footer {
  background: var(--ink);
  color: #d9cfc2;
  padding-top: 80px;
}
.footer h4 {
  color: #f0e8db;
  margin-bottom: 18px;
}
.footer a {
  color: #d9cfc2;
  transition: color 0.3s var(--ease);
}
.footer a:hover {
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__brand .brand__word {
  color: #f0e8db;
}
.footer__brand p {
  color: #b3a999;
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
}

.footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 28px 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #9c9384;
}
.footer__base p {
  margin: 0;
  color: inherit;
}
.footer__fine {
  max-width: 56ch;
}

/* -------- film grain -------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  animation: grainShift 8s steps(8) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -5%); }
  20% { transform: translate(-10%, 5%); }
  30% { transform: translate(5%, -10%); }
  40% { transform: translate(-5%, 15%); }
  50% { transform: translate(-10%, 5%); }
  60% { transform: translate(15%, 0); }
  70% { transform: translate(0, 10%); }
  80% { transform: translate(-15%, 0); }
  90% { transform: translate(10%, 5%); }
  100% { transform: translate(0, 0); }
}

/* -------- aurora (drifting rose blobs) -------- */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.aurora__blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}
.aurora__blob--1 {
  width: 620px;
  height: 620px;
  background: var(--accent);
  opacity: 0.32;
  top: -120px;
  left: -120px;
  animation: aurora1 38s ease-in-out infinite;
}
.aurora__blob--2 {
  width: 520px;
  height: 520px;
  background: var(--accent-soft);
  opacity: 0.5;
  top: 40%;
  right: -160px;
  animation: aurora2 46s ease-in-out infinite;
}
.aurora__blob--3 {
  width: 460px;
  height: 460px;
  background: var(--accent-deep);
  opacity: 0.18;
  bottom: -180px;
  left: 30%;
  animation: aurora3 54s ease-in-out infinite;
}
@keyframes aurora1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50vw, 30vh); }
}
@keyframes aurora2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40vw, -20vh); }
}
@keyframes aurora3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30vw, -40vh); }
}

/* sections with image content need a solid backdrop so aurora doesn't bleed
   through photos. Otherwise leave sections transparent so aurora reads. */
body {
  background: var(--bg);
}
.section--alt {
  background: var(--bg-alt);
}

/* -------- reveal animation -------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-out) var(--reveal-delay, 0ms),
    transform 1.1s var(--ease-out) var(--reveal-delay, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* -------- responsive -------- */
@media (max-width: 960px) {
  .nav__links,
  .nav__actions {
    display: none;
  }
  .nav__toggle {
    display: block;
  }
  .mobile.is-open {
    display: flex;
  }

  .hero__grid,
  .about__grid,
  .visit__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .about__label {
    position: static;
  }
  .hero__image {
    aspect-ratio: 5 / 4;
  }

  .pillars,
  .services__grid,
  .team__grid,
  .reviews__list,
  .visit__details,
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__image {
    max-width: 360px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .pillars,
  .services__grid,
  .team__grid,
  .reviews__list,
  .visit__details,
  .footer__grid,
  .contact__form {
    grid-template-columns: 1fr;
  }

  /* mobile gallery: horizontal scroll carousel */
  .gallery .container {
    padding-right: 0;
  }
  .gallery__grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--gutter);
    padding: 4px var(--gutter) 24px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery__grid::-webkit-scrollbar {
    display: none;
  }
  .gallery__item,
  .gallery__item--tall {
    flex: 0 0 78vw;
    max-width: 320px;
    aspect-ratio: 3 / 4;
    margin-top: 0;
    scroll-snap-align: start;
  }
  .gallery__item--tall {
    aspect-ratio: 3 / 4;
  }

  .hero__actions {
    gap: 16px;
  }
  .btn--text {
    padding: 10px 0;
  }

  .footer__base {
    flex-direction: column;
  }
}
