:root {
  --black: #070809;
  --panel: #0d0f11;
  --cream: #f4f0e7;
  --muted: #aaa69f;
  --gold: #cfa85d;
  --gold2: #f0d394;
  --line: rgba(207, 168, 93, 0.25);
  --green: #25d366;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font:
    16px/1.65 "DM Sans",
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid var(--gold2);
  outline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.header {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(#08090bde, transparent);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
}
.brandMark {
  display: block;
  width: 96px;
  height: 51px;
  flex: 0 0 auto;
  overflow: hidden;
}
.brandMark img {
  width: 96px;
  height: auto;
}
.brand strong {
  display: block;
  font:
    400 24px/1 "Italiana",
    serif;
  letter-spacing: 0.16em;
}
.brand small {
  display: block;
  color: var(--gold2);
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-top: 6px;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
.navlinks > a:not(.button):hover {
  color: var(--gold2);
}
.navlinks > a:not(.button):focus-visible,
.footer a:focus-visible {
  color: var(--gold2);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border: 1px solid var(--gold);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s;
}
.button:hover,
.button.primary {
  background: var(--gold);
  color: var(--black);
}
.button.primary:hover {
  background: var(--gold2);
}
.hero {
  height: clamp(720px, 100svh, 860px);
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(7, 8, 9, 0.98) 4%,
      rgba(7, 8, 9, 0.83) 49%,
      rgba(7, 8, 9, 0.25) 100%
    ),
    url("hair-bundle.jpg") 72% center/cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, var(--black));
}
.heroContent {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding-top: 100px;
}
.eyebrow {
  color: var(--gold2);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1,
.pageHero h1 {
  font:
    400 clamp(48px, 7vw, 86px)/0.98 "Italiana",
    serif;
  margin: 0 0 25px;
  letter-spacing: -0.02em;
}
.hero h1 span,
.pageHero h1 span {
  color: var(--gold);
}
.hero p,
.pageHero p {
  max-width: 650px;
  color: #d3cfc7;
  font-size: 18px;
  margin: 0 0 32px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.proof {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 0;
  right: 0;
}
.proofin {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #090a0ce8;
  backdrop-filter: blur(8px);
}
.proofItem {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}
.proofItem:last-child {
  border: 0;
}
.proofItem b {
  display: block;
  color: var(--gold2);
  font:
    400 22px "Italiana",
    serif;
}
.proofItem span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section {
  padding: 105px 0;
}
.section.alt {
  background: var(--panel);
}
.sectionHead {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.kicker {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.title {
  font:
    400 clamp(38px, 5vw, 60px)/1.04 "Italiana",
    serif;
  margin: 10px 0 0;
}
.sectionHead p,
.lead {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}
.paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.path {
  min-height: 305px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #17191c, #0a0c0e);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s;
}
.path:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.pathNo {
  color: var(--gold);
  font:
    400 17px "Italiana",
    serif;
}
.path h3 {
  font:
    400 34px/1.08 "Italiana",
    serif;
  margin: 0 0 12px;
}
.path p {
  color: var(--muted);
  margin: 0;
}
.pathLink {
  display: inline-block;
  color: var(--gold2);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 24px;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.productImage {
  height: 650px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.productImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productImage:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 8, 9, 0.85));
}
.imageNote {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 25px;
  font:
    400 26px "Italiana",
    serif;
}
.imageNote small {
  display: block;
  color: var(--gold2);
  font: 600 10px "DM Sans";
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.list {
  margin-top: 27px;
}
.listItem {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.listItem i {
  font:
    400 21px "Italiana",
    serif;
  color: var(--gold);
  font-style: normal;
}
.listItem b {
  display: block;
  font-weight: 500;
}
.listItem span {
  color: var(--muted);
  font-size: 14px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step {
  background: var(--black);
  padding: 34px;
}
.step i {
  color: var(--gold);
  font:
    400 20px "Italiana",
    serif;
  font-style: normal;
}
.step h3 {
  font:
    400 26px "Italiana",
    serif;
  margin: 45px 0 8px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.cta {
  text-align: center;
  padding: 120px 0;
  background:
    radial-gradient(circle at 50% 0, rgba(207, 168, 93, 0.17), transparent 43%),
    #0b0c0e;
  border-block: 1px solid var(--line);
}
.cta h2 {
  font:
    400 clamp(42px, 6vw, 72px)/1 "Italiana",
    serif;
  max-width: 850px;
  margin: 15px auto 22px;
}
.cta p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: var(--muted);
}
.footer {
  padding: 55px 0;
}
.footerGrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 45px;
}
.footer h4 {
  font-size: 11px;
  color: var(--gold2);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin: 0 0 13px;
}
.footer p,
.footer a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin: 5px 0;
}
.footer a:hover {
  color: var(--cream);
}
.copyright {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #242629;
  margin-top: 40px;
  padding-top: 20px;
  color: #6f7175;
  font-size: 12px;
}
.whatsapp {
  position: fixed;
  z-index: 12;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 12px 30px #0008;
}
.whatsapp svg {
  width: 26px;
  fill: #fff;
}
.pageHero {
  padding: 190px 0 100px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(207, 168, 93, 0.18),
      transparent 33%
    ),
    #0a0b0d;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs {
  color: var(--gold2);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.breadcrumbs a {
  color: var(--muted);
}
.content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 85px;
}
.article h2 {
  font:
    400 42px/1.1 "Italiana",
    serif;
  margin: 0 0 20px;
}
.article h3 {
  font:
    400 28px "Italiana",
    serif;
  margin: 42px 0 12px;
}
.article p,
.article li {
  color: #bbb7af;
}
.article ul {
  padding-left: 20px;
}
.sidebar {
  position: sticky;
  top: 30px;
  align-self: start;
  border: 1px solid var(--line);
  padding: 27px;
  background: #0e1012;
}
.sidebar h3 {
  font:
    400 27px "Italiana",
    serif;
  margin: 0 0 10px;
}
.sidebar p {
  color: var(--muted);
  font-size: 14px;
}
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.fact {
  padding: 22px;
  border: 1px solid var(--line);
  background: #0d0f11;
}
.fact b {
  display: block;
  color: var(--gold2);
  margin-bottom: 4px;
}
.fact span {
  color: var(--muted);
  font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button,
  .path {
    transition: none;
  }
}

@media (min-width: 1440px) {
  .wrap {
    width: min(1240px, calc(100% - 80px));
  }
  .heroContent {
    width: min(790px, 100%);
  }
  .paths {
    gap: 20px;
  }
}

@media (min-width: 801px) and (max-width: 1180px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .nav {
    gap: 18px;
  }
  .brand {
    min-width: 190px;
  }
  .brandMark {
    width: 82px;
    height: 44px;
  }
  .brandMark img {
    width: 82px;
  }
  .brand strong {
    font-size: 18px;
  }
  .navlinks {
    gap: 17px;
    font-size: 12px;
  }
  .navlinks .button {
    padding: 12px 15px;
    font-size: 10px;
  }
  .hero {
    min-height: 700px;
  }
  .heroContent {
    width: min(670px, 72%);
    padding-top: 88px;
  }
  .hero h1 {
    font-size: clamp(52px, 6.5vw, 70px);
  }
  .hero p {
    max-width: 570px;
    font-size: 16px;
  }
  .proof {
    bottom: 20px;
  }
  .proofItem {
    padding: 15px 17px;
  }
  .proofItem b {
    font-size: 19px;
  }
  .proofItem span {
    font-size: 10px;
  }
  .section {
    padding: 84px 0;
  }
  .sectionHead {
    gap: 42px;
  }
  .path {
    min-height: 280px;
    padding: 27px;
  }
  .path h3 {
    font-size: 30px;
  }
  .split {
    gap: 55px;
  }
  .productImage {
    height: 560px;
  }
  .step {
    padding: 28px;
  }
  .content {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 55px;
  }
  .pageHero {
    padding: 165px 0 85px;
  }
}

@media (min-width: 801px) and (max-height: 800px) {
  .nav {
    height: 78px;
    gap: 8px;
  }
  .hero {
    height: 100svh;
    min-height: 690px;
  }
  .heroContent {
    padding-top: 70px;
  }
  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(50px, 5.2vw, 68px);
  }
  .hero p {
    margin-bottom: 24px;
  }
  .proof {
    bottom: 16px;
  }
  .proofItem {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

@media (max-width: 800px) {
  .wrap {
    width: min(calc(100% - 30px), 1180px);
  }
  .nav {
    height: 96px;
    justify-content: center;
    gap: 0;
  }
  .brand {
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 13px;
  }
  .brandMark {
    width: 112px;
    height: 60px;
  }
  .brandMark img {
    width: 112px;
  }
  .brand strong {
    font-size: 25px;
  }
  .brand small {
    font-size: 10px;
    letter-spacing: 0.22em;
    margin-top: 7px;
  }
  .navlinks > a:not(.button) {
    display: none;
  }
  .navlinks .button {
    display: none;
  }
  .hero {
    height: auto;
    min-height: 800px;
    background-position: 66% center;
  }
  .heroContent {
    padding-top: 105px;
  }
  .hero p,
  .pageHero p {
    font-size: 16px;
  }
  .proof {
    bottom: 18px;
  }
  .proofin {
    grid-template-columns: repeat(2, 1fr);
  }
  .proofItem:nth-child(2) {
    border-right: 0;
  }
  .proofItem:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .proofItem {
    padding: 13px;
  }
  .proofItem b {
    font-size: 18px;
  }
  .section {
    padding: 78px 0;
  }
  .sectionHead,
  .split,
  .content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .paths,
  .steps {
    grid-template-columns: 1fr;
  }
  .path {
    min-height: 250px;
  }
  .productImage {
    height: 510px;
  }
  .cta {
    padding: 90px 0 120px;
  }
  .cta .button {
    width: 100%;
    max-width: 420px;
  }
  .footerGrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .copyright {
    display: block;
  }
  .copyright span {
    display: block;
    margin-top: 7px;
  }
  .whatsapp {
    width: 50px;
    height: 50px;
    right: 13px;
    bottom: 13px;
  }
  .pageHero {
    padding: 145px 0 75px;
  }
  .pageHero h1 {
    font-size: 46px;
  }
  .content {
    gap: 45px;
  }
  .sidebar {
    position: static;
  }
  .facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .brandMark {
    width: 96px;
    height: 51px;
  }
  .brandMark img {
    width: 96px;
  }
  .brand strong {
    font-size: 22px;
  }
}
