:root {
  --black: #090909;
  --charcoal: #121111;
  --cream: #f3ece8;
  --soft: #e8d8d1;
  --ivory: #fff7ef;
  --champagne: #d8b6a4;
  --rose: #c4a08f;
  --rose-deep: #a88172;
  --ink: #211b18;
  --muted: #6f625c;
  --line: rgba(33, 27, 24, 0.18);
  --light-line: rgba(255, 247, 239, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background: #050505;
  padding-bottom: 52px;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-image {
  position: relative;
  width: min(1080px, calc(100% - 112px));
  height: clamp(520px, 58vw, 680px);
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.82) 7%, transparent 21%, transparent 79%, rgba(5, 5, 5, 0.82) 93%, #050505 100%),
    linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.58) 9%, transparent 23%, transparent 73%, rgba(5, 5, 5, 0.74) 90%, #050505 100%),
    radial-gradient(circle at 50% 20%, rgba(8, 8, 8, 0.16), transparent 34%);
  pointer-events: none;
  z-index: 1;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-makeup.jpg") center 17% / cover no-repeat;
  filter: brightness(0.88) contrast(0.72) saturate(0.68) sepia(0.08);
  z-index: 0;
}

.hero .brand {
  color: var(--ivory);
}

.hero .nav-links a {
  color: rgba(255, 247, 239, 0.76);
}

.hero .menu-toggle {
  border-color: var(--light-line);
  color: var(--ivory);
}

.site-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 56px;
}

.brand {
  display: inline-grid;
  line-height: 0.8;
  color: var(--ink);
  min-width: 120px;
}

.brand span {
  font-family: "Parisienne", cursive;
  font-size: 42px;
}

.brand small {
  margin-left: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(33, 27, 24, 0.82);
  opacity: 1;
}

.nav-links a:hover {
  color: var(--champagne);
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, #d2ad9b, #b88f7e);
  color: var(--ivory);
}

.nav-cta {
  padding: 18px 24px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero-copy {
  position: absolute;
  top: auto;
  bottom: clamp(20px, 6%, 38px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: min(330px, 68%);
  padding: clamp(18px, 2.8vw, 28px);
  background: rgba(8, 8, 8, 0.68);
  border: 1px solid rgba(255, 247, 239, 0.18);
  backdrop-filter: blur(2px);
  text-align: center;
}

.hero-copy h1 {
  font-size: clamp(34px, 4.2vw, 54px);
}

.eyebrow {
  margin: 0 0 16px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ivory);
  font-size: clamp(44px, 5.5vw, 78px);
}

h2 {
  font-size: clamp(38px, 4vw, 52px);
}

.hero-signature {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  width: min(560px, 100%);
  margin: 22px auto 0;
  color: rgba(255, 247, 239, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(17px, 1.7vw, 24px);
  font-style: italic;
  line-height: 1.2;
}

.hero-signature::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(216, 182, 164, 0.66);
}

.hero-tint {
  color: var(--champagne);
}

.hero-actions,
.socials,
.field-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 30px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-outline {
  border-color: rgba(255, 247, 239, 0.58);
  color: var(--ivory);
}

.btn-dark {
  background: #080808;
  color: var(--ivory);
}

.socials {
  margin-top: 0;
  gap: 24px;
}

.socials a,
.contact-list svg {
  width: 22px;
  height: 22px;
}

.tiktok {
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

section {
  padding: 54px 56px;
}

.section-light {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.6), transparent 44%),
    var(--cream);
}

.section-dark {
  background: var(--black);
  color: var(--ivory);
}

.about {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 70px;
  align-items: start;
}

.about,
.portfolio,
.booking,
.services {
  max-width: 1440px;
  margin: 0 auto;
}

.about-copy {
  max-width: 350px;
}

.about-copy .eyebrow,
.portfolio .eyebrow {
  color: var(--rose-deep);
}

.about-copy p:not(.eyebrow):not(.signature) {
  margin: 28px 0 0;
  color: #2f2723;
  font-weight: 500;
}

.signature {
  margin: 22px 0 0;
  font-family: "Parisienne", cursive;
  font-size: 52px;
  line-height: 1;
  color: var(--rose-deep);
}

.signature span {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  vertical-align: top;
}

.about-gallery {
  min-width: 0;
}

.about-carousel {
  position: relative;
  width: min(780px, 100%);
  margin: 0 auto;
}

.about-carousel-window {
  overflow: hidden;
}

.about-track {
  display: flex;
  gap: 12px;
  padding: 0 14%;
  transition: transform 420ms ease;
  will-change: transform;
}

.about-slide {
  flex: 0 0 72%;
  aspect-ratio: 0.74;
  object-fit: cover;
  object-position: 50% 40%;
  opacity: 0.38;
  transform: scale(0.96);
  transition: opacity 280ms ease, transform 280ms ease;
}

.about-slide.active {
  opacity: 1;
  transform: scale(1);
}

.about-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 247, 239, 0.76);
  color: var(--ink);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.about-arrow svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.7;
}

.about-arrow-prev {
  left: 12px;
}

.about-arrow-next {
  right: 12px;
}

.services {
  text-align: center;
  padding-top: 45px;
  padding-bottom: 38px;
}

.centered {
  text-align: center;
  color: var(--rose-deep);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 22px;
  margin: 62px auto 42px;
  max-width: 1240px;
}

.service-grid article {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 92px;
}

.service-grid svg {
  width: 44px;
  height: 44px;
  stroke: var(--champagne);
  stroke-width: 1.25;
}

.service-grid h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
}

.portfolio {
  text-align: center;
}

.portfolio h2 {
  margin-bottom: 34px;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 18px auto 18px;
}

.tabs button {
  min-width: 0;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(33, 27, 24, 0.2);
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

.tabs .active {
  border-color: #090909;
  background: #090909;
  color: var(--ivory);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 0 auto 22px;
  max-width: 1280px;
}

.portfolio-grid img {
  aspect-ratio: 0.74;
  object-fit: cover;
}

.portfolio-crop {
  object-fit: cover;
}

.crop-bridal-01 {
  object-position: 46% 28%;
}

.crop-bridal-02 {
  object-position: 48% 24%;
}

.crop-bridal-03 {
  object-position: 46% 24%;
}

.crop-bridal-04 {
  object-position: 50% 20%;
}

.crop-bridal-05 {
  object-position: 50% 22%;
}

.crop-bridal-06 {
  object-position: 58% 28%;
}

.crop-editorial-01 {
  object-position: 52% 24%;
}

.crop-editorial-02 {
  object-position: 48% 24%;
}

.crop-editorial-03 {
  object-position: 54% 22%;
}

.crop-editorial-04 {
  object-position: 48% 18%;
}

.crop-editorial-05 {
  object-position: 48% 35%;
}

.crop-editorial-06 {
  object-position: 54% 34%;
}

.crop-editorial-07 {
  object-position: 50% 20%;
}

.crop-editorial-08 {
  object-position: 50% 28%;
}

.crop-hair-01 {
  object-position: 52% 26%;
}

.crop-hair-02 {
  object-position: 50% 20%;
}

.crop-hair-03 {
  object-position: 46% 24%;
}

.crop-hair-04 {
  object-position: 50% 20%;
}

.crop-hair-05 {
  object-position: 50% 36%;
}

.crop-hair-06 {
  object-position: 52% 24%;
}

.crop-bodypaint-01 {
  object-position: 50% 38%;
}

.crop-bodypaint-02 {
  object-position: 58% 44%;
}

.crop-bodypaint-03 {
  object-position: 50% 28%;
}

.crop-bodypaint-04 {
  object-position: 50% 22%;
}

.crop-bodypaint-05 {
  object-position: 50% 24%;
}

.crop-bodypaint-06 {
  object-position: 54% 34%;
}

.crop-bodypaint-07 {
  object-position: 50% 28%;
}

.crop-bodypaint-08 {
  object-position: 50% 28%;
}

.crop-bodypaint-09 {
  object-position: 50% 28%;
}

.crop-bodypaint-11 {
  object-position: 50% 38%;
}

.crop-bodypaint-12 {
  object-position: 50% 30%;
}

.crop-sfx-02 {
  object-position: 54% 26%;
}

.crop-sfx-03 {
  object-position: 50% 20%;
}

.crop-sfx-04 {
  object-position: 50% 42%;
}

.crop-sfx-05 {
  object-position: 50% 26%;
}

.crop-sfx-06 {
  object-position: 50% 28%;
}

.crop-sfx-07 {
  object-position: 50% 22%;
}

.booking {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 330px) minmax(210px, 300px);
  gap: 64px;
  align-items: center;
  justify-content: center;
  min-height: 478px;
  padding-top: 48px;
  padding-bottom: 0;
}

.booking-image {
  align-self: end;
  width: min(340px, 100%);
  height: 430px;
  background: url("assets/booking-siri.jpg") 50% 28% / cover;
}

.contact-list {
  display: grid;
  gap: 30px;
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-list svg,
.contact-list .tiktok {
  width: 23px;
  color: var(--rose-deep);
  flex: 0 0 23px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 10px 112px;
  background: #090909;
  color: var(--ivory);
}

footer .brand span {
  font-size: 34px;
}

footer p {
  margin: 0;
  color: rgba(255, 247, 239, 0.72);
  font-size: 11px;
}

footer p:last-child {
  justify-self: end;
}

@media (max-width: 1050px) {
  .site-nav,
  .hero-copy,
  section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav-links {
    gap: 18px;
  }

  .about,
  .booking {
    gap: 34px;
  }

  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking {
    grid-template-columns: 240px 1fr;
  }

  .contact-list {
    grid-column: 2;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 38px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 0;
  }

  .hero-image {
    width: calc(100% - 44px);
    height: calc(100vw - 44px);
    max-height: 520px;
  }

  .hero-image::after {
    background-position: 50% 12%;
    filter: brightness(0.9) contrast(0.74) saturate(0.7) sepia(0.08);
  }

  .site-nav {
    justify-content: center;
    padding: 12px 22px 14px;
  }

  .brand {
    min-width: 0;
    text-align: center;
  }

  .brand span {
    font-size: 34px;
  }

  .brand small {
    margin-left: 36px;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 22px;
    z-index: 4;
  }

  .nav-links {
    position: absolute;
    z-index: 3;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: rgba(9, 9, 9, 0.96);
    border: 1px solid var(--light-line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--ivory);
    padding: 14px 10px;
  }

  .hero-copy {
    bottom: 22px;
    width: min(238px, 70%);
    padding: 18px 20px 20px;
  }

  h1 {
    font-size: 31px;
  }

  .hero-signature {
    gap: 8px;
    margin-top: 14px;
    font-size: 15px;
    white-space: nowrap;
  }

  .hero-signature::before {
    width: 26px;
  }

  .hero-actions,
  .field-row {
    align-items: stretch;
    flex-direction: column;
  }

  .tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 14px auto 14px;
  }

  .btn,
  .tabs button {
    width: 100%;
  }

  .tabs button {
    min-height: 34px;
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: 0.07em;
  }

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

  .about-copy {
    max-width: none;
  }

  .about-carousel {
    width: 100%;
  }

  .about-track {
    gap: 8px;
    padding: 0 7%;
  }

  .about-slide {
    flex-basis: 86%;
  }

  .about-arrow {
    width: 54px;
    height: 54px;
  }

  .about-arrow svg {
    width: 28px;
    height: 28px;
  }

  .about-arrow-prev {
    left: 8px;
  }

  .about-arrow-next {
    right: 8px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking {
    padding-bottom: 36px;
  }

  .booking-image {
    width: 100%;
    height: 360px;
    order: 2;
  }

  .contact-list {
    grid-column: auto;
    grid-template-columns: 1fr;
    order: 3;
    padding-bottom: 0;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px;
    text-align: center;
  }

  footer p:last-child {
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .brand span {
    font-size: 34px;
  }

  .brand small {
    margin-left: 38px;
  }

  .hero-copy h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 38px;
  }

  .about-slide {
    aspect-ratio: 0.78;
  }

  .portfolio-grid {
    gap: 6px;
  }
}
