:root {
  --cream: #f4efe8;
  --cream-2: #e9dfd3;
  --brown: #34251f;
  --brown-2: #513b30;
  --dark: #181310;
  --rose: #a9867d;
  --muted: #8e8179;
  --white: #fffaf5;

  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;

  --container: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: var(--cream);
}

body::-webkit-scrollbar-thumb {
  background: var(--brown);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.section {
  width: min(var(--container), calc(100% - 80px));
  margin: auto;
}


/* LOADER */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: var(--dark);
  color: var(--cream);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 90px);
  letter-spacing: 0.06em;
}

.loader-line {
  width: 100px;
  height: 1px;
  background: var(--cream);
  margin-top: 20px;

  animation: loaderLine 1.3s ease-in-out infinite;
}

@keyframes loaderLine {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }

  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}


/* HEADER */

.header {
  position: fixed;
  z-index: 1000;

  top: 0;
  left: 0;

  width: 100%;
  height: 90px;

  padding: 0 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--white);

  transition:
    background 0.4s ease,
    color 0.4s ease,
    height 0.4s ease;
}

.header.scrolled {
  height: 72px;

  color: var(--brown);

  background: rgba(244, 239, 232, 0.94);

  backdrop-filter: blur(18px);
}

.logo {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.08em;
  line-height: 0.8;
}

.logo span {
  display: block;

  font-family: var(--sans);
  font-size: 7px;
  font-weight: 700;

  letter-spacing: 0.25em;

  margin-top: 9px;
}

.nav {
  display: flex;
  gap: 38px;
  align-items: center;
}

.nav a {
  position: relative;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: currentColor;

  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 26px;
  height: 1px;

  margin: 7px auto;

  background: currentColor;

  transition: transform 0.3s ease;
}


/* MOBILE MENU */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;

  background: var(--brown);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 26px;

  opacity: 0;
  visibility: hidden;

  transform: translateY(-20px);

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--cream);

  font-family: var(--serif);
  font-size: 42px;
}


/* HERO */

.hero {
  position: relative;

  min-height: 100vh;
  height: 100vh;

  display: flex;
  align-items: center;

  color: var(--white);

  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: -6%;

  background-image:
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=2400&q=95");

  background-size: cover;
  background-position: center;

  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(18, 12, 9, 0.8),
      rgba(18, 12, 9, 0.35),
      rgba(18, 12, 9, 0.18)
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  width: min(800px, calc(100% - 80px));

  margin-left: 8%;
  padding-top: 70px;
}

.hero-small {
  font-size: 10px;

  letter-spacing: 0.3em;
  font-weight: 700;

  margin-bottom: 25px;
}

.hero h1 {
  font-family: var(--serif);

  font-size: clamp(70px, 10vw, 150px);

  font-weight: 400;

  line-height: 0.82;

  letter-spacing: -0.045em;
}

.hero h1 em {
  display: block;

  font-weight: 400;

  color: #e2cfc3;
}

.hero p {
  width: 470px;
  max-width: 100%;

  margin-top: 38px;

  font-size: 14px;
  line-height: 1.9;

  color: rgba(255, 250, 245, 0.78);
}

.hero-link {
  display: inline-flex;
  align-items: center;

  gap: 20px;

  margin-top: 38px;

  font-size: 10px;

  letter-spacing: 0.2em;
  text-transform: uppercase;

  font-weight: 700;
}

.hero-link span {
  font-size: 20px;

  transition: transform 0.3s ease;
}

.hero-link:hover span {
  transform: translateY(5px);
}

.hero-bottom {
  position: absolute;
  z-index: 3;

  bottom: 30px;
  left: 50px;
  right: 50px;

  display: flex;
  justify-content: space-between;

  font-size: 9px;

  letter-spacing: 0.2em;
  font-weight: 700;

  color: rgba(255, 250, 245, 0.7);
}


/* INTRO */

.intro {
  padding-top: 170px;
  padding-bottom: 170px;

  display: grid;

  grid-template-columns: 1fr 2fr;

  gap: 80px;
}

.intro-label,
.eyebrow,
.grid-title span,
.celebrity-heading span,
.gallery-heading span {
  font-size: 10px;

  letter-spacing: 0.25em;

  font-weight: 700;
}

.intro-text {
  max-width: 850px;
}

.intro h2 {
  font-family: var(--serif);

  font-weight: 400;

  font-size: clamp(45px, 6vw, 82px);

  line-height: 0.95;

  letter-spacing: -0.03em;
}

.intro h2 em {
  color: var(--rose);
}

.intro p {
  width: min(620px, 100%);

  margin-top: 40px;

  font-size: 14px;

  line-height: 2;

  color: var(--muted);
}


/* FULL IMAGE */

.full-image {
  position: relative;

  width: 100%;
  height: 80vh;

  overflow: hidden;
}

.image-wrap {
  position: absolute;

  inset: -8%;
}

.image-wrap img {
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.image-caption {
  position: absolute;
  z-index: 2;

  bottom: 30px;

  left: 40px;
  right: 40px;

  display: flex;

  justify-content: space-between;

  color: white;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.22em;
}


/* EXPERIENCE */

.experience {
  padding-top: 170px;
  padding-bottom: 170px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: center;
}

.experience-image {
  height: 680px;

  overflow: hidden;
}

.experience-image img {
  height: 100%;

  object-fit: cover;

  transition: transform 1s ease;
}

.experience-image:hover img {
  transform: scale(1.04);
}

.experience-content {
  padding: 20px 8%;
}

.section-number {
  font-size: 10px;

  letter-spacing: 0.2em;

  color: var(--rose);

  margin-bottom: 25px;
}

.experience h2 {
  margin-top: 25px;

  font-family: var(--serif);

  font-weight: 400;

  font-size: clamp(50px, 6vw, 90px);

  line-height: 0.9;

  letter-spacing: -0.035em;
}

.experience h2 em {
  color: var(--rose);
}

.experience-content > p {
  max-width: 480px;

  margin-top: 35px;

  font-size: 14px;

  line-height: 2;

  color: var(--muted);
}

.services-list {
  margin-top: 45px;

  border-top: 1px solid rgba(52, 37, 31, 0.18);
}

.services-list > div {
  display: grid;

  grid-template-columns: 40px 1fr;

  padding: 17px 0;

  border-bottom: 1px solid rgba(52, 37, 31, 0.18);
}

.services-list span {
  font-size: 9px;

  color: var(--rose);
}

.services-list p {
  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}


/* WOMEN GRID */

.editorial-grid {
  padding-bottom: 170px;
}

.grid-title {
  margin-bottom: 55px;
}

.grid-title h2 {
  margin-top: 20px;

  font-family: var(--serif);

  font-weight: 400;

  font-size: clamp(48px, 6vw, 82px);

  line-height: 0.95;
}

.grid-title h2 em {
  color: var(--rose);
}

.women-grid {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 22px;
}

.women-grid figure {
  height: 540px;

  overflow: hidden;
}

.women-grid figure.large {
  height: 700px;

  grid-row: span 2;
}

.women-grid figure.wide {
  height: 400px;
}

.women-grid img {
  height: 100%;

  object-fit: cover;

  transition: transform 0.9s ease;
}

.women-grid figure:hover img {
  transform: scale(1.05);
}


/* MEN */

.experience-reverse {
  background: var(--dark);

  color: var(--cream);

  width: 100%;

  padding-left:
    max(40px, calc((100% - var(--container)) / 2));

  padding-right:
    max(40px, calc((100% - var(--container)) / 2));
}

.experience-reverse .experience-content {
  padding-left: 0;
}

.experience-reverse .experience-content > p {
  color: rgba(244, 239, 232, 0.6);
}

.experience-reverse .services-list {
  border-color: rgba(244, 239, 232, 0.15);
}

.experience-reverse .services-list > div {
  border-color: rgba(244, 239, 232, 0.15);
}


/* MEN GRID */

.men-gallery {
  padding-top: 170px;
  padding-bottom: 170px;
}

.men-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.25fr 0.8fr;

  gap: 22px;

  align-items: center;
}

.men-grid figure {
  height: 470px;

  overflow: hidden;
}

.men-grid figure.large {
  height: 650px;
}

.men-grid img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.9s ease;
}

.men-grid figure:hover img {
  transform: scale(1.05);
}


/* BARBER */

.barber-section {
  position: relative;

  height: 85vh;
  min-height: 600px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: white;

  overflow: hidden;
}

.barber-bg {
  position: absolute;

  inset: -5%;

  background-image:
    url("https://images.unsplash.com/photo-1599351431202-1e0f0d6c5d1a?auto=format&fit=crop&w=2200&q=90");

  background-size: cover;

  background-position: center;
}

.barber-overlay {
  position: absolute;

  inset: 0;

  background: rgba(18, 13, 10, 0.55);
}

.barber-content {
  position: relative;

  z-index: 2;

  text-align: center;

  width: min(800px, calc(100% - 50px));
}

.barber-content > span {
  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.3em;
}

.barber-content h2 {
  margin-top: 25px;

  font-family: var(--serif);

  font-size: clamp(65px, 9vw, 130px);

  line-height: 0.85;

  font-weight: 400;
}

.barber-content h2 em {
  color: #d3b9ac;
}

.barber-content p {
  width: min(480px, 100%);

  margin: 35px auto 0;

  font-size: 14px;

  line-height: 1.9;

  color: rgba(255,255,255,0.75);
}


/* CELEBRITY */

.celebrity-section {
  padding-top: 170px;
  padding-bottom: 180px;
}

.celebrity-heading {
  max-width: 850px;

  margin-bottom: 80px;
}

.celebrity-heading h2 {
  margin-top: 22px;

  font-family: var(--serif);

  font-size: clamp(55px, 7vw, 100px);

  line-height: 0.9;

  font-weight: 400;

  letter-spacing: -0.04em;
}

.celebrity-heading h2 em {
  color: var(--rose);
}

.celebrity-heading p {
  width: min(540px, 100%);

  margin-top: 30px;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.9;
}

.celebrity-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 70px 28px;
}

.celebrity-card {
  min-width: 0;
}

.celebrity-image {
  position: relative;

  height: 720px;

  overflow: hidden;

  background: #d8cdc3;
}

.celebrity-card:nth-child(2) .celebrity-image {
  height: 720px;
}

.celebrity-card:nth-child(3) .celebrity-image,
.celebrity-card:nth-child(4) .celebrity-image {
  height: 560px;
}

.celebrity-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(24, 19, 16, 0.35),
      transparent 35%
    );

  pointer-events: none;
}

.celebrity-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 1s cubic-bezier(.2,.7,.2,1),
    filter 0.6s ease;
}

.celebrity-card:hover .celebrity-image img {
  transform: scale(1.035);
}

.celebrity-number {
  position: absolute;

  z-index: 2;

  top: 25px;
  right: 25px;

  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(255,255,255,0.55);

  border-radius: 50%;

  color: white;

  font-size: 10px;
}

.celebrity-info {
  padding-top: 25px;
}

.celebrity-info > span {
  font-size: 9px;

  letter-spacing: 0.2em;

  font-weight: 700;

  color: var(--rose);
}

.celebrity-info h3 {
  margin-top: 10px;

  font-family: var(--serif);

  font-weight: 400;

  font-size: clamp(42px, 4vw, 60px);

  line-height: 0.95;
}

.celebrity-info h3 em {
  color: var(--rose);
}

.celebrity-info p {
  margin-top: 17px;

  font-size: 12px;

  line-height: 1.8;

  color: var(--muted);
}


/* GALLERY */

.gallery-section {
  padding-bottom: 180px;
}

.gallery-heading {
  margin-bottom: 65px;
}

.gallery-heading h2 {
  margin-top: 20px;

  font-family: var(--serif);

  font-size: clamp(55px, 7vw, 100px);

  line-height: 0.9;

  font-weight: 400;
}

.gallery-heading h2 em {
  color: var(--rose);
}

.gallery-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 22px;
}

.gallery-item {
  height: 500px;

  overflow: hidden;
}

.gallery-item.tall {
  height: 700px;
}

.gallery-item.wide {
  height: 450px;

  grid-column: 1 / -1;
}

.gallery-item img {
  height: 100%;

  object-fit: cover;

  transition: transform 1s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}


/* CTA */

.client-cta {
  position: relative;

  overflow: hidden;

  background: var(--brown);

  color: var(--cream);

  padding: 170px 30px;

  text-align: center;
}

.cta-decoration {
  position: absolute;

  width: 500px;
  height: 500px;

  border: 1px solid rgba(244,239,232,0.08);

  border-radius: 50%;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}

.cta-decoration::before {
  content: "";

  position: absolute;

  inset: 45px;

  border: 1px solid rgba(244,239,232,0.08);

  border-radius: 50%;
}

.cta-content {
  position: relative;

  z-index: 2;

  max-width: 900px;

  margin: auto;
}

.cta-content > span {
  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.3em;
}

.cta-content h2 {
  margin-top: 25px;

  font-family: var(--serif);

  font-weight: 400;

  font-size: clamp(60px, 8vw, 110px);

  line-height: 0.88;

  letter-spacing: -0.04em;
}

.cta-content h2 em {
  display: block;

  color: #d3b9ac;
}

.cta-content p {
  width: min(600px, 100%);

  margin: 40px auto 0;

  font-size: 14px;

  line-height: 1.9;

  color: rgba(244,239,232,0.7);
}

.whatsapp-button {
  display: inline-flex;

  align-items: center;

  gap: 25px;

  margin-top: 40px;

  padding: 17px 25px;

  border: 1px solid rgba(244,239,232,0.45);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.whatsapp-button:hover {
  background: var(--cream);

  color: var(--brown);
}

.whatsapp-button span {
  font-size: 17px;
}


/* FOOTER */

.footer {
  background: var(--dark);

  color: var(--cream);

  padding: 80px 50px 30px;
}

.footer-top {
  display: flex;

  justify-content: space-between;

  gap: 80px;

  max-width: var(--container);

  margin: auto;
}

.footer-brand h2 {
  font-family: var(--serif);

  font-weight: 400;

  font-size: 55px;
}

.footer-brand p {
  margin-top: 10px;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.25em;

  text-transform: uppercase;

  color: rgba(244,239,232,0.55);
}

.footer-links {
  display: flex;

  gap: 120px;
}

.footer-links div {
  display: flex;

  flex-direction: column;

  gap: 13px;
}

.footer-links span {
  margin-bottom: 5px;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.2em;

  color: var(--rose);
}

.footer-links a {
  font-size: 11px;

  color: rgba(244,239,232,0.7);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: var(--container);

  margin: 80px auto 0;

  padding-top: 25px;

  border-top: 1px solid rgba(244,239,232,0.12);

  display: flex;

  justify-content: space-between;

  font-size: 9px;

  letter-spacing: 0.12em;

  color: rgba(244,239,232,0.4);
}


/* REVEAL */

.reveal {
  opacity: 0;

  transform: translateY(45px);

  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .header {
    padding: 0 25px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    width: min(100% - 40px, var(--container));
  }

  .hero-content {
    margin-left: 25px;

    width: calc(100% - 50px);
  }

  .hero-bottom {
    left: 25px;
    right: 25px;
  }

  .intro {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .experience {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .experience-reverse {
    padding-left: 25px;
    padding-right: 25px;
  }

  .experience-reverse .experience-content {
    order: 1;
  }

  .experience-reverse .experience-image {
    order: 2;
  }

  .celebrity-grid {
    gap: 45px 18px;
  }

  .celebrity-image,
  .celebrity-card:nth-child(2) .celebrity-image {
    height: 580px;
  }

  .celebrity-card:nth-child(3) .celebrity-image,
  .celebrity-card:nth-child(4) .celebrity-image {
    height: 470px;
  }
}


@media (max-width: 700px) {

  .header {
    height: 72px;
  }

  .logo {
    font-size: 24px;
  }

  .hero {
    min-height: 760px;

    height: 100svh;
  }

  .hero-content {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: clamp(65px, 19vw, 105px);
  }

  .hero p {
    font-size: 13px;
  }

  .hero-bottom {
    bottom: 20px;

    font-size: 7px;
  }

  .intro {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .full-image {
    height: 55vh;

    min-height: 400px;
  }

  .experience,
  .men-gallery,
  .editorial-grid,
  .celebrity-section,
  .gallery-section {
    padding-top: 100px;

    padding-bottom: 100px;
  }

  .experience-image {
    height: 500px;
  }

  .experience-content {
    padding: 0;
  }

  .women-grid {
    grid-template-columns: 1fr;
  }

  .women-grid figure,
  .women-grid figure.large,
  .women-grid figure.wide {
    height: 480px;

    grid-row: auto;
  }

  .men-grid {
    grid-template-columns: 1fr;
  }

  .men-grid figure,
  .men-grid figure.large {
    height: 500px;
  }

  .barber-section {
    height: 650px;

    min-height: auto;
  }

  .celebrity-grid {
    grid-template-columns: 1fr;
  }

  .celebrity-image,
  .celebrity-card:nth-child(2) .celebrity-image,
  .celebrity-card:nth-child(3) .celebrity-image,
  .celebrity-card:nth-child(4) .celebrity-image {
    height: 620px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    height: 480px;

    grid-column: auto;
  }

  .client-cta {
    padding: 110px 25px;
  }

  .cta-decoration {
    width: 330px;
    height: 330px;
  }

  .footer {
    padding: 60px 25px 25px;
  }

  .footer-top {
    flex-direction: column;

    gap: 50px;
  }

  .footer-links {
    gap: 60px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 12px;

    margin-top: 60px;
  }
}


@media (max-width: 450px) {

  .mobile-menu a {
    font-size: 34px;
  }

  .hero-content {
    margin-left: 20px;

    width: calc(100% - 40px);
  }

  .hero h1 {
    font-size: 65px;
  }

  .hero p {
    width: 100%;
  }

  .experience-image {
    height: 430px;
  }

  .celebrity-image,
  .celebrity-card:nth-child(2) .celebrity-image,
  .celebrity-card:nth-child(3) .celebrity-image,
  .celebrity-card:nth-child(4) .celebrity-image {
    height: 520px;
  }

  .footer-links {
    gap: 40px;
  }
}