:root {
  --bg: #070707;
  --bg-soft: #0d0c0b;
  --text: #f8f4ed;
  --muted: #b9afa2;
  --gold: #d9ad61;
  --gold-2: #f4d99b;
  --line: rgba(217, 173, 97, 0.28);
  --white-line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Cinzel", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --header-offset: 6.9rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 8%, rgba(144, 92, 48, 0.22), transparent 30rem),
    linear-gradient(180deg, #030303 0%, var(--bg) 58%, #0b0907 100%);
  color: var(--text);
  font-family: var(--sans);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.65rem clamp(1.25rem, 4vw, 4.8rem);
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.82), rgba(3, 3, 3, 0));
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--white-line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  text-transform: uppercase;
}

.brand__name {
  color: var(--gold-2);
  font-family: var(--display);
  font-size: clamp(2.05rem, 3.2vw, 3.25rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0.03em;
}

.brand__sub {
  align-self: center;
  width: 100%;
  max-width: 10.7rem;
  margin-top: 0.48rem;
  color: var(--text);
  font-family: var(--display);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.8rem);
  font-family: var(--display);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 0.5rem 0;
  transition: color 180ms ease;
}

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

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold-2);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 0.85rem 1.65rem;
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), #c48f3e);
  color: #080705;
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(201, 145, 63, 0.22);
}

.btn--outline {
  color: var(--gold-2);
  background: rgba(0, 0, 0, 0.2);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--white-line);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.98) 18%, rgba(5, 5, 5, 0.58) 48%, rgba(5, 5, 5, 0.2) 100%),
    url("assets/vanite-hero-model.png") right center / auto 100% no-repeat;
  opacity: 0.9;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, #080808 100%),
    radial-gradient(circle at 15% 50%, rgba(217, 173, 97, 0.12), transparent 22rem);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(48rem, calc(100% - 2.5rem));
  margin-left: clamp(1.25rem, 10vw, 9.6rem);
  padding-top: 5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  max-width: 45rem;
  margin-bottom: 1.65rem;
  font-size: clamp(4rem, 6vw, 7.6rem);
}

h1 em {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
}

h3 {
  margin-bottom: 0.45rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2.45rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__tags span {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-social {
  position: absolute;
  right: clamp(1rem, 3vw, 3rem);
  top: 31%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--gold-2);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-social__line {
  width: 1px;
  height: 4.5rem;
  background: linear-gradient(var(--gold), transparent);
}

.hero-social a {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
}

.hero-social a:hover {
  background: rgba(217, 173, 97, 0.12);
}

.hero-social > span:last-child {
  margin-top: 1rem;
  color: var(--text);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.video-link {
  position: absolute;
  left: clamp(1.25rem, 3.2vw, 4rem);
  bottom: 3.1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-link span {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.65rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.6rem;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 1.1rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.services,
.gallery,
.team,
.contact {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5.6rem);
}

.services {
  min-height: calc(100svh - var(--header-offset));
  padding-top: clamp(1.35rem, 2.8vw, 2.7rem);
  padding-bottom: clamp(1rem, 2vw, 2rem);
}

.services .section-head {
  position: relative;
  grid-template-columns: minmax(31rem, 1.16fr) minmax(21rem, 0.84fr);
  align-items: start;
  column-gap: clamp(2.4rem, 5vw, 5.2rem);
  row-gap: 1.5rem;
  width: min(100%, 84rem);
  margin: 0 auto clamp(0.8rem, 1.7vw, 1.6rem);
}

.services .section-head::before {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 12%;
  left: calc(53.2% - 1rem);
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.services .section-head > div {
  max-width: 37rem;
}

.services .section-head > p {
  grid-column: 2;
  align-self: start;
  max-width: 32rem;
  margin: 0;
  padding-top: clamp(0.75rem, 1.7vw, 1.4rem);
  color: #e8dfd3;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.services .section-head > .btn {
  grid-column: 2;
  justify-self: start;
  min-width: min(100%, 23.5rem);
  min-height: 3.1rem;
  margin-top: -0.15rem;
  padding-inline: 1.55rem;
  border-color: rgba(217, 173, 97, 0.95);
  background: rgba(0, 0, 0, 0.18);
}

.services h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(3rem, 3.85vw, 3.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.services h2 span {
  display: block;
  white-space: nowrap;
}

.services h2 em {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.services .eyebrow {
  margin-bottom: 0.65rem;
}

.services .gold-arrow {
  display: block;
  width: 2.6rem;
  height: 1px;
  margin-top: 0.65rem;
  overflow: hidden;
  background: var(--gold);
}

.gallery {
  min-height: calc(100svh - var(--header-offset));
  padding-top: clamp(1.8rem, 3.6vw, 3rem);
  padding-bottom: clamp(1.8rem, 3.6vw, 3rem);
}

.gallery .section-head {
  margin-bottom: clamp(1.3rem, 2.4vw, 2rem);
}

.gallery h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.3rem);
}

.team {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-offset) + 2.4rem);
  overflow: hidden;
  padding: clamp(1.7rem, 3.2vw, 3rem) clamp(1.5rem, 5vw, 4.8rem) clamp(1rem, 2vw, 2rem);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 27%, rgba(5, 5, 5, 0.2) 56%, rgba(5, 5, 5, 0.75) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.1) 50%, rgba(5, 5, 5, 0.9) 100%),
    url("assets/team-hero.png") center right / cover no-repeat,
    #060606;
}

.team::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 48% 26%, rgba(217, 173, 97, 0.16), transparent 18rem),
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.86) 88%);
  pointer-events: none;
}

.team__content {
  width: min(31rem, 39vw);
}

.team__line {
  display: block;
  width: 3.2rem;
  height: 1px;
  margin: 0.65rem 0 1rem;
  overflow: hidden;
  background: var(--gold);
}

.team h2 {
  max-width: 28rem;
  font-size: clamp(3.4rem, 4.75vw, 5.7rem);
  line-height: 0.9;
}

.team h2 span,
.team h2 em {
  display: block;
}

.team h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.team__content > p:not(.eyebrow) {
  max-width: 25rem;
  margin: 0 0 1.05rem;
  color: #f0e8dd;
  font-size: clamp(0.95rem, 1.15vw, 1.12rem);
  line-height: 1.45;
}

.team__content .btn {
  min-width: min(100%, 23.2rem);
  min-height: 3.1rem;
  background: rgba(0, 0, 0, 0.2);
}

main section[id] {
  scroll-margin-top: var(--header-offset);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(16rem, 36rem) minmax(16rem, 32rem) auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.6rem;
}

.section-head--compact {
  grid-template-columns: minmax(16rem, 35rem) minmax(16rem, 32rem);
  align-items: center;
}

.section-head p:not(.eyebrow),
.split-section p,
.promo p,
.contact p {
  color: var(--muted);
  line-height: 1.8;
}

.gold-arrow {
  color: var(--gold);
  font-size: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.2vw, 1.1rem);
  width: min(100%, 90rem);
  margin-inline: auto;
}

.service-card {
  position: relative;
  min-height: clamp(13.6rem, 18.6vw, 16.8rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(1rem, 1.45vw, 1.35rem);
  border: 1px solid rgba(217, 173, 97, 0.22);
  border-radius: 8px;
  background: center / cover no-repeat;
  box-shadow: var(--shadow);
}

.service-card--hair {
  background-image: url("assets/service-hair.png");
  background-position: 50% 44%;
}

.service-card--nails {
  background-image: url("assets/service-nails.png");
  background-position: 50% 48%;
}

.service-card--lashes {
  background-image: url("assets/service-lashes.png");
  background-position: 50% 44%;
}

.service-card--brows {
  background-image: url("assets/service-brows.png");
  background-position: 50% 42%;
}

.service-card--makeup {
  background-image: url("assets/service-makeup.png");
  background-position: 50% 45%;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 62%);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: clamp(1.15rem, 2.4vw, 2.4rem);
  border: 1px solid rgba(217, 173, 97, 0.78);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: var(--gold-2);
  font-size: 1.2rem;
}

.service-card h3 {
  margin-bottom: 0.58rem;
  font-size: clamp(1.45rem, 1.55vw, 1.75rem);
}

.service-card h3::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1px;
  margin-top: 0.62rem;
  background: var(--gold);
}

.service-card p {
  min-height: 2.8rem;
  margin-bottom: 0.55rem;
  color: #f1ece4;
  font-size: clamp(0.82rem, 0.92vw, 0.92rem);
  line-height: 1.45;
}

.service-card a {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: calc(100svh - var(--header-offset));
  border-block: 1px solid var(--white-line);
  background: var(--bg-soft);
}

.split-section__image {
  min-height: 30rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0), #0d0c0b 100%),
    url("assets/vanite-hero-model.png") 70% center / auto 120% no-repeat;
}

.split-section__copy {
  align-self: center;
  max-width: 42rem;
  padding: clamp(2.7rem, 5.6vw, 5.5rem);
}

.about {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) auto minmax(24rem, 1fr);
  align-items: center;
  gap: clamp(2.4rem, 5vw, 5.5rem);
  min-height: calc(100svh - var(--header-offset) + 2.4rem);
  overflow: hidden;
  padding: clamp(2.6rem, 5vw, 5rem) clamp(1.5rem, 6vw, 5.2rem);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 20%, rgba(217, 173, 97, 0.2), transparent 18rem),
    radial-gradient(circle at 8% 70%, rgba(217, 173, 97, 0.08), transparent 20rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.94) 48%, rgba(25, 17, 9, 0.82) 100%),
    #060606;
}

.about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0%, rgba(217, 173, 97, 0.05) 58%, transparent 100%),
    radial-gradient(circle at 96% 72%, rgba(217, 173, 97, 0.11), transparent 18rem);
  pointer-events: none;
}

.about__brand {
  justify-self: center;
  display: grid;
  justify-items: center;
  width: min(100%, 34rem);
  text-align: center;
}

.about__mark {
  color: var(--gold-2);
  font-family: var(--display);
  font-size: clamp(7rem, 13vw, 13rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.about__name {
  margin-top: 0.5rem;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.2vw, 6rem);
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.about__sub {
  margin-top: 0.85rem;
  color: #f7efe4;
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.7vw, 1.45rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.about__line,
.about__partners > span {
  display: block;
  width: 4.5rem;
  height: 1px;
  background: var(--gold);
}

.about__line {
  margin-top: 1.8rem;
}

.about__partners {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  margin-top: clamp(3rem, 6vw, 5.2rem);
}

.about__partners p {
  margin: 0;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.about__partners div {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  color: #f6f0e8;
}

.about__partners strong {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 500;
  white-space: nowrap;
}

.about__partners strong:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12%;
  right: calc(clamp(0.75rem, 1.5vw, 1.5rem) * -1);
  width: 1px;
  height: 76%;
  background: rgba(217, 173, 97, 0.45);
}

.about__divider {
  position: relative;
  width: 1px;
  height: min(72vh, 40rem);
  background: linear-gradient(transparent, rgba(217, 173, 97, 0.62), transparent);
}

.about__divider span {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 0.8rem;
  height: 0.8rem;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold-2);
}

.about__copy {
  max-width: 43rem;
}

.about__title-line {
  display: block;
  width: min(11rem, 40%);
  height: 1px;
  margin: 0.9rem 0 1.6rem;
  background: linear-gradient(90deg, var(--gold), var(--gold), transparent);
}

.about h2 {
  max-width: 40rem;
  font-size: clamp(3.2rem, 5.5vw, 6.4rem);
  line-height: 0.96;
}

.about h2 em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.about__kicker {
  margin: clamp(1.1rem, 2vw, 1.8rem) 0 1rem;
  color: #f4eadc;
  font-family: var(--display);
  font-size: clamp(0.75rem, 1.05vw, 0.95rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.about__copy > p:not(.eyebrow):not(.about__kicker) {
  max-width: 35rem;
  margin: 0;
  color: #ded6cc;
  font-size: clamp(0.98rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.about-values {
  display: grid;
  gap: clamp(1.1rem, 2.2vw, 1.65rem);
  margin-top: clamp(1.5rem, 3.4vw, 3.2rem);
}

.about-values article {
  display: grid;
  grid-template-columns: 4.3rem 1px 1fr;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.65rem);
}

.about-values article > span {
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 1.6rem;
}

.about-values article::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 3.6rem;
  background: rgba(217, 173, 97, 0.58);
}

.about-values h3 {
  margin-bottom: 0.38rem;
  color: var(--gold-2);
  font-family: var(--display);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-values p {
  margin: 0;
  color: #d9d0c5;
  line-height: 1.5;
}

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

.stats span {
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.stats strong {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr;
  grid-auto-rows: clamp(8.2rem, 12vw, 10.4rem);
  gap: 0.85rem;
}

.gallery-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.36)),
    center / cover no-repeat;
  box-shadow: var(--shadow);
}

.gallery-item--one {
  grid-row: span 2;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.36)),
    url("assets/gallery-hair.png");
  background-position: 50% 50%;
}

.gallery-item--two {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.36)),
    url("assets/gallery-nails.png");
  background-position: 50% 50%;
}

.gallery-item--three {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.36)),
    url("assets/gallery-lashes-brows.png");
  background-position: 50% 50%;
}

.gallery-item--four {
  grid-column: span 2;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.36)),
    url("assets/gallery-makeup.png");
  background-position: 50% 50%;
}

.promo {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: clamp(0.8rem, 1.7vw, 1.45rem);
  min-height: calc(100svh - var(--header-offset) + 2.4rem);
  margin: 0;
  overflow: hidden;
  padding: clamp(1.55rem, 2.7vw, 2.8rem) clamp(1.5rem, 6.5vw, 6.4rem) clamp(0.95rem, 1.8vw, 1.6rem);
  border-block: 1px solid var(--white-line);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.86) 31%, rgba(3, 3, 3, 0.38) 62%, rgba(3, 3, 3, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.08) 0%, rgba(3, 3, 3, 0.38) 100%),
    url("assets/promo-hero.png") right center / auto 112% no-repeat,
    #060606;
}

.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 34%, rgba(217, 173, 97, 0.11), transparent 22rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 69%, rgba(0, 0, 0, 0.82) 100%);
}

.promo__content {
  align-self: start;
  max-width: 38rem;
}

.promo h2 {
  max-width: 28rem;
  margin-bottom: 0.45rem;
  font-size: clamp(3rem, 4.05vw, 4.15rem);
  line-height: 0.93;
}

.promo h2 em {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.promo .gold-arrow {
  display: block;
  width: 2.9rem;
  height: 1px;
  margin: 0 0 0.55rem;
  overflow: hidden;
  background: var(--gold);
}

.promo p {
  max-width: 30rem;
  margin-bottom: 0.85rem;
  color: #d8d0c6;
  font-size: clamp(0.88rem, 0.98vw, 0.98rem);
  line-height: 1.5;
}

.promo__cta {
  min-width: min(100%, 26.5rem);
  min-height: 2.9rem;
  justify-content: flex-start;
  padding-inline: 1.6rem;
  background: rgba(0, 0, 0, 0.32);
}

.promo__watermark {
  position: absolute;
  left: clamp(1rem, 3.2vw, 3.2rem);
  bottom: clamp(2.7rem, 4.6vw, 4.2rem);
  z-index: -1;
  color: rgba(217, 173, 97, 0.08);
  font-family: var(--display);
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.7;
  text-transform: uppercase;
  pointer-events: none;
}

.promo-features {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.15rem, 3vw, 3.2rem);
  align-self: end;
  width: min(100%, 64rem);
  margin-left: clamp(1.2rem, 5vw, 5.5rem);
}

.promo-features article {
  position: relative;
  display: grid;
  grid-template-columns: 3.15rem 1fr;
  gap: 0.9rem;
  align-items: start;
  min-height: 4.9rem;
}

.promo-features article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: calc(clamp(0.75rem, 2vw, 2rem) * -1);
  width: 1px;
  height: 4rem;
  background: linear-gradient(transparent, var(--gold), transparent);
}

.promo-features__icon {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-2);
  font-size: 1.2rem;
}

.promo-features h3 {
  max-width: 13rem;
  margin-bottom: 0.42rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.promo-features p {
  max-width: 15rem;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.42;
}

.team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.35rem);
  width: min(100%, 70rem);
  margin: clamp(1.45rem, 3vw, 2.8rem) auto 0;
}

.team-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.35rem;
  row-gap: 0.9rem;
  min-height: clamp(9.2rem, 12.5vw, 13rem);
  padding: clamp(0.95rem, 1.45vw, 1.35rem);
  border: 1px solid rgba(217, 173, 97, 0.58);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(10, 10, 10, 0.9), rgba(15, 14, 12, 0.72));
  box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
}

.team-card__icon {
  display: grid;
  place-items: center;
  width: clamp(3.2rem, 4.1vw, 4.4rem);
  height: clamp(3.2rem, 4.1vw, 4.4rem);
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
}

.team-grid p {
  margin: 0;
  color: #f4eee8;
  font-size: clamp(0.92rem, 1.15vw, 1.12rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card__line {
  display: block;
  width: 2.5rem;
  height: 1px;
  margin: 0.65rem 0 0.72rem;
  background: var(--gold);
}

.team-grid h3 {
  margin: 0;
  color: #f3ece3;
  font-family: var(--sans);
  font-size: clamp(0.76rem, 0.9vw, 0.9rem);
  font-weight: 500;
  line-height: 1.45;
}

.team-grid a {
  grid-column: 2;
  align-self: end;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(24rem, 1fr);
  align-items: center;
  gap: clamp(2.4rem, 5vw, 4.8rem);
  min-height: calc(100svh - var(--header-offset) + 2.4rem);
  padding: clamp(2.55rem, 4.4vw, 4.3rem) clamp(1.5rem, 6.5vw, 6rem);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 4% 44%, rgba(217, 173, 97, 0.18), transparent 20rem),
    linear-gradient(90deg, rgba(217, 173, 97, 0.06), transparent 36%),
    #070707;
  overflow: hidden;
}

.contact::before {
  content: "V";
  position: absolute;
  left: 28%;
  top: 3%;
  z-index: -1;
  color: rgba(217, 173, 97, 0.06);
  font-family: var(--display);
  font-size: clamp(13rem, 24vw, 24rem);
  line-height: 1;
  pointer-events: none;
}

.contact__copy {
  position: relative;
  max-width: 33rem;
}

.contact__copy h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(4.35rem, 6.5vw, 6.8rem);
  line-height: 0.9;
}

.contact__copy h2 em {
  display: block;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.contact__copy > .gold-arrow {
  display: block;
  width: 2.5rem;
  height: 1px;
  margin: 0 0 1.35rem;
  overflow: hidden;
  background: var(--gold);
}

.contact__title-line {
  margin: 0 0 1.15rem;
}

.contact__copy > p {
  max-width: 28rem;
  margin-bottom: 1.7rem;
  color: #d8d0c6;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.contact-details {
  display: grid;
  gap: 0.95rem;
}

.contact-details article {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  align-items: center;
}

.contact-details article > span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(217, 173, 97, 0.62);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 1.3rem;
}

.contact-details h3 {
  margin-bottom: 0.2rem;
  color: var(--gold-2);
  font-family: var(--sans);
  font-size: 1rem;
}

.contact-details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.contact__form-wrap {
  position: relative;
  width: 100%;
  max-width: 42rem;
  justify-self: end;
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
  border-left: 1px solid var(--gold);
}

.contact-form {
  display: grid;
  gap: 1.22rem;
  padding: clamp(1.35rem, 2.7vw, 2.25rem);
  border: 1px solid rgba(217, 173, 97, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.65rem;
}

.contact-form label > span {
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 3.45rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  outline: none;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--gold);
}

.contact-form button {
  width: 100%;
  min-height: 3.75rem;
  margin-top: 0.5rem;
}

.contact__secure {
  margin: 1.1rem 0 0;
  max-width: calc(100% - 5.25rem);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 12rem;
  padding: 1.9rem clamp(1.5rem, 6.5vw, 6rem);
  border-top: 1px solid var(--line);
  background: #050505;
  color: var(--muted);
}

.site-footer .brand__name {
  font-size: 1.7rem;
}

.site-footer .brand__sub {
  font-size: 0.52rem;
}

.site-footer > p {
  justify-self: center;
  margin: 0;
}

.footer-social {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.footer-social a {
  color: var(--gold-2);
  font-size: 1.35rem;
  font-weight: 700;
}

@media (min-width: 861px) and (max-height: 720px) {
  .about {
    min-height: calc(100svh - var(--header-offset) + 2.4rem);
    padding-top: clamp(1.6rem, 2.8vw, 2.4rem);
    padding-bottom: clamp(1.3rem, 2.2vw, 1.9rem);
  }

  .about__mark {
    font-size: clamp(5.8rem, 10vw, 9rem);
  }

  .about__name {
    font-size: clamp(2.6rem, 4.8vw, 4.6rem);
  }

  .about__sub {
    font-size: 0.9rem;
  }

  .about__line {
    margin-top: 1.15rem;
  }

  .about__partners {
    margin-top: clamp(1.8rem, 3.5vw, 3rem);
  }

  .about__partners p {
    font-size: 0.68rem;
  }

  .about__partners strong {
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  }

  .about__divider {
    height: min(68vh, 34rem);
  }

  .about h2 {
    font-size: clamp(2.9rem, 4.7vw, 5rem);
  }

  .about__title-line {
    margin-bottom: 1.05rem;
  }

  .about__kicker {
    margin: 1rem 0 0.75rem;
    font-size: 0.72rem;
  }

  .about__copy > p:not(.eyebrow):not(.about__kicker) {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .about-values {
    gap: 0.9rem;
    margin-top: 1.25rem;
  }

  .about-values article {
    grid-template-columns: 3.4rem 1px 1fr;
  }

  .about-values article > span {
    width: 3.35rem;
    height: 3.35rem;
    font-size: 1.25rem;
  }

  .about-values article::before {
    height: 3rem;
  }

  .about-values h3 {
    margin-bottom: 0.18rem;
    font-size: 0.72rem;
  }

  .about-values p {
    font-size: 0.85rem;
    line-height: 1.35;
  }

  .team {
    padding-top: clamp(1.35rem, 2.5vw, 2rem);
    padding-bottom: clamp(0.9rem, 1.8vw, 1.4rem);
  }

  .team__content {
    width: min(28rem, 38vw);
  }

  .team h2 {
    font-size: clamp(3.15rem, 4.25vw, 4.45rem);
  }

  .team__line {
    margin: 0.65rem 0 0.75rem;
  }

  .team__content > p:not(.eyebrow) {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .team__content .btn {
    min-height: 2.8rem;
    padding-inline: 1.25rem;
  }

  .team-grid {
    width: min(100%, 70rem);
    margin-top: 1rem;
  }

  .team-grid article {
    min-height: 8.1rem;
    padding: 0.85rem;
    row-gap: 0.65rem;
  }

  .team-grid article:last-child {
    padding-right: 5rem;
  }

  .team-card__icon {
    width: 3.15rem;
    height: 3.15rem;
    font-size: 1.3rem;
  }

  .team-grid p {
    font-size: 1rem;
  }

  .team-grid h3 {
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .team-grid a {
    font-size: 0.76rem;
  }

  .whatsapp-float span {
    display: none;
  }

  .contact {
    gap: clamp(2rem, 4.2vw, 3.6rem);
    min-height: calc(100svh - var(--header-offset) + 2.4rem);
    padding-top: clamp(1.7rem, 3.2vw, 2.35rem);
    padding-bottom: clamp(1.25rem, 2.4vw, 2rem);
  }

  .contact::before {
    top: 0;
    font-size: clamp(12rem, 21vw, 20rem);
  }

  .contact__copy h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(3.7rem, 5.2vw, 5rem);
  }

  .contact__copy > .gold-arrow {
    margin-bottom: 0.95rem;
  }

  .contact__title-line {
    margin-bottom: 0.85rem;
  }

  .contact__copy > p {
    margin-bottom: 1.15rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .contact-details {
    gap: 0.65rem;
  }

  .contact-details article {
    grid-template-columns: 2.75rem 1fr;
    gap: 0.75rem;
  }

  .contact-details article > span {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.12rem;
  }

  .contact-details h3 {
    margin-bottom: 0.05rem;
    font-size: 0.9rem;
  }

  .contact-details p {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .contact__form-wrap {
    max-width: 39rem;
  }

  .contact-form {
    gap: 0.9rem;
    padding: clamp(1.1rem, 2.2vw, 1.75rem);
  }

  .contact-form label {
    gap: 0.45rem;
  }

  .contact-form label > span {
    font-size: 0.74rem;
  }

  .contact-form input,
  .contact-form select {
    min-height: 3rem;
  }

  .contact-form button {
    min-height: 3.25rem;
    margin-top: 0.2rem;
  }

  .contact__secure {
    margin-top: 0.75rem;
    max-width: calc(100% - 6.5rem);
    text-align: left;
    font-size: 0.82rem;
  }
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.whatsapp-float span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.78);
  font-size: 0.74rem;
}

.whatsapp-float strong {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border: 0.45rem solid rgba(255, 236, 189, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), #c38e41);
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: 190px auto auto;
  }

  .main-nav {
    gap: 1rem;
    font-size: 0.78rem;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services .section-head {
    grid-template-columns: minmax(31rem, 1.2fr) minmax(19rem, 0.8fr);
    align-items: start;
    gap: 2.25rem;
    width: 100%;
  }

  .services .section-head::before {
    display: block;
    top: 21%;
    bottom: 14%;
    left: calc(54% - 1rem);
  }

  .services .section-head > p,
  .services .section-head > .btn {
    grid-column: 2;
  }

  .services .section-head > p {
    align-self: start;
    max-width: 30rem;
    padding-top: clamp(1.35rem, 3vw, 2rem);
  }

  .services .section-head > .btn {
    margin-top: 0.15rem;
  }

  .team {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 34%, rgba(5, 5, 5, 0.3) 68%, rgba(5, 5, 5, 0.82) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.1) 48%, rgba(5, 5, 5, 0.9) 100%),
      url("assets/team-hero.png") center right / cover no-repeat,
      #060606;
  }

  .team__content {
    width: min(31rem, 48vw);
  }

  .team-grid {
    width: 100%;
  }

  .about {
    grid-template-columns: minmax(17rem, 0.86fr) auto minmax(22rem, 1fr);
    gap: clamp(1.7rem, 3.5vw, 3rem);
  }

  .about__partners div {
    gap: 1rem;
  }

  .services h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(3.18rem, 4.55vw, 3.58rem);
    line-height: 0.96;
    max-width: 34rem;
  }

  .services .eyebrow {
    margin-bottom: 0.9rem;
  }

  .services .gold-arrow {
    margin-top: 1.05rem;
  }

  .service-card {
    min-height: 15.8rem;
  }

  .service-card__icon {
    width: 3.05rem;
    height: 3.05rem;
    margin-bottom: 1.8rem;
  }

  .service-card h3 {
    font-size: 1.58rem;
  }

  .service-card p {
    min-height: 3.2rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
  }

  .promo {
    gap: 1.8rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.88) 35%, rgba(3, 3, 3, 0.42) 68%, rgba(3, 3, 3, 0.16) 100%),
      linear-gradient(180deg, rgba(3, 3, 3, 0.04) 0%, rgba(3, 3, 3, 0.5) 100%),
      url("assets/promo-hero.png") right center / auto 100% no-repeat,
      #060606;
  }

  .promo h2 {
    max-width: 30rem;
    margin-bottom: 0.75rem;
    font-size: clamp(3.35rem, 5.4vw, 4.4rem);
  }

  .promo .gold-arrow {
    margin-bottom: 0.85rem;
  }

  .promo p {
    max-width: 31rem;
    margin-bottom: 1.25rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .promo__cta {
    min-height: 3.25rem;
  }

  .promo__watermark {
    bottom: 4.2rem;
    font-size: clamp(5rem, 14vw, 10rem);
  }

  .promo-features {
    gap: 1.2rem;
    width: min(100%, 64rem);
    margin-left: clamp(1.2rem, 4vw, 3rem);
  }

  .promo-features article {
    grid-template-columns: 3.1rem 1fr;
    gap: 0.9rem;
    min-height: 5.9rem;
  }

  .promo-features__icon {
    width: 3.1rem;
    height: 3.1rem;
    font-size: 1.35rem;
  }

  .promo-features h3 {
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
  }

  .promo-features p {
    font-size: 0.82rem;
    line-height: 1.5;
  }
}

@media (min-width: 861px) and (max-width: 1160px) {
  .services {
    padding-inline: clamp(2.1rem, 4vw, 3.3rem);
  }
}

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

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 70;
    display: grid;
    gap: 0.38rem;
    width: 2.7rem;
    height: 2.7rem;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
  }

  .nav-toggle span {
    display: block;
    width: 1.2rem;
    height: 1px;
    background: var(--gold-2);
    transition: transform 180ms ease;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.35rem;
    background: rgba(4, 4, 4, 0.96);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .hero {
    min-height: 760px;
  }

  .hero__media {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.45), #050505 82%),
      url("assets/vanite-hero-model.png") 68% top / auto 58% no-repeat;
  }

  .hero__content {
    align-self: end;
    margin: 0;
    padding: 25rem 1.25rem 7rem;
    width: 100%;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5.3rem);
  }

  .hero-social,
  .scroll-cue {
    display: none;
  }

  .video-link {
    bottom: 2rem;
  }

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

  .about {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .about__divider {
    width: 100%;
    height: 1px;
  }

  .about__divider span {
    top: 50%;
  }

  .about__brand {
    justify-self: start;
    width: 100%;
  }

  .about__partners {
    margin-top: 2.4rem;
  }

  .about__copy {
    max-width: none;
  }

  .about h2 {
    font-size: clamp(3.1rem, 12vw, 5rem);
  }

  .services .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services .section-head::before {
    display: none;
  }

  .services .section-head > p,
  .services .section-head > .btn {
    grid-column: 1;
  }

  .services h2 {
    font-size: clamp(3.1rem, 13vw, 4.4rem);
  }

  .service-card {
    min-height: 20rem;
  }

  .service-card__icon {
    margin-bottom: 4.5rem;
  }

  .split-section__image {
    min-height: 23rem;
  }

  .team {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.72) 32%, rgba(5, 5, 5, 0.98) 68%),
      url("assets/team-hero.png") 62% top / auto 30rem no-repeat,
      #060606;
  }

  .team__content {
    width: min(100%, 34rem);
    padding-top: 24rem;
  }

  .team h2 {
    font-size: clamp(3.5rem, 13vw, 5.3rem);
  }

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

  .gallery-item--one,
  .gallery-item--four {
    grid-column: auto;
    grid-row: auto;
  }

  .promo {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .contact__copy {
    max-width: 40rem;
  }

  .contact__form-wrap {
    max-width: none;
    padding-left: 0;
    padding-top: 2rem;
    border-left: 0;
    border-top: 1px solid rgba(217, 173, 97, 0.55);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    align-items: start;
  }

  .site-footer > p {
    justify-self: start;
  }

  .footer-social {
    justify-self: start;
  }

  .promo {
    min-height: auto;
    padding-top: 4rem;
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.28) 0%, rgba(3, 3, 3, 0.98) 56%),
      url("assets/promo-hero.png") 68% top / auto 48% no-repeat,
      #060606;
  }

  .promo__content {
    padding-top: 18rem;
  }

  .promo-features {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .promo-features article:not(:last-child)::after {
    display: none;
  }
}

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

  .brand__name {
    font-size: 2rem;
  }

  .brand__sub {
    font-size: 0.54rem;
  }

  .hero__tags {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .hero__actions,
  .hero__actions .btn,
  .promo .btn,
  .contact-form .btn {
    width: 100%;
  }

  .promo {
    padding-inline: 1rem;
  }

  .promo h2 {
    font-size: clamp(3.1rem, 15vw, 4.6rem);
  }

  .contact {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .contact__copy h2 {
    font-size: clamp(3.45rem, 15vw, 4.8rem);
  }

  .contact-details article {
    grid-template-columns: 2.8rem 1fr;
  }

  .contact-details article > span {
    width: 2.8rem;
    height: 2.8rem;
  }

  .contact-form {
    padding: 1.1rem;
  }

  .promo__watermark {
    display: none;
  }

  .services,
  .gallery,
  .team,
  .contact {
    padding-inline: 1rem;
  }

  .team__content {
    padding-top: 20rem;
  }

  .team-grid article {
    grid-template-columns: 3.8rem 1fr;
    min-height: auto;
  }

  .team-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.45rem;
  }

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

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

  .about-values article {
    grid-template-columns: 3.5rem 1px 1fr;
  }

  .whatsapp-float span {
    display: none;
  }
}

.btn .icon {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}

.service-card__icon .icon,
.promo-features__icon .icon,
.team-card__icon .icon,
.contact-details article > span .icon,
.about-values article > span .icon,
.whatsapp-float strong .icon {
  width: 1.25em;
  height: 1.25em;
}

.about-values article > span .icon {
  width: 1.65rem;
  height: 1.65rem;
}

.whatsapp-float strong .icon {
  width: 1.35rem;
  height: 1.35rem;
  stroke-width: 1.9;
}

.contact__secure .icon {
  display: inline-block;
  width: 0.95rem;
  height: 0.95rem;
  margin-right: 0.35rem;
  vertical-align: -0.15rem;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  gap: clamp(1rem, 2vw, 1.65rem);
  color: #f6f0e8;
}

.brand-logo {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.18rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.about__partners .brand-logo:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8%;
  right: calc(clamp(0.5rem, 1vw, 0.85rem) * -1);
  width: 1px;
  height: 84%;
  background: rgba(217, 173, 97, 0.45);
}

.brand-logo span {
  display: block;
}

.brand-logo img {
  display: block;
  height: auto;
  object-fit: contain;
}

.brand-logo small {
  display: block;
  color: #f2ece5;
  font-family: var(--display);
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-logo svg {
  display: block;
  width: clamp(3.2rem, 5vw, 4.6rem);
  height: auto;
  fill: none;
  stroke: #fff;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-logo--schwarzkopf span {
  font-family: Georgia, serif;
  font-size: clamp(1.12rem, 1.8vw, 1.75rem);
}

.brand-logo--schwarzkopf img {
  width: clamp(4.15rem, 5.5vw, 5rem);
}

.brand-logo--master {
  gap: 0.25rem;
}

.brand-logo--master img {
  display: block;
  width: clamp(2.35rem, 3.3vw, 3rem);
  height: auto;
  object-fit: contain;
}

.brand-logo--glam span {
  display: block;
  min-width: clamp(5.3rem, 6.6vw, 6.25rem);
  padding: 0.28rem 0.55rem 0.32rem;
  border: 1.5px solid #fff;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(0.92rem, 1.25vw, 1.15rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.brand-logo--glam small {
  letter-spacing: 0.12em;
}
