/* ============================================
   EVA MILLER - LINKTREE STYLE LANDING PAGE
   ============================================ */

/* --- CSS Reset & Variables --- */
:root {
  --multi-light: #f9fafb;
  --multi-brown-mid: #eae8dc;
  --multi-purple-light: #b70b51;
  --gray-50: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #868e96;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: '42dot Sans', sans-serif;
  background: var(--multi-light);
  color: var(--gray-800);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  width: 100%;
  max-width: 76rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Typography Classes --- */
.font-merriweather {
  font-family: 'Merriweather', serif;
}

.font-instrument {
  font-family: 'Instrument Serif', serif;
}

.font-saans {
  font-family: '42dot Sans', 'Segoe UI', sans-serif;
}


/* ===================================
   HERO SECTION
   =================================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12.5rem 1.25rem 6.25rem;
  gap: 2.5rem;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

/* Dark overlay for text contrast */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Header */
.header {
  position: fixed;
  top: 0rem;
  width: 100%;
  max-width: 50rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  top: 1rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  justify-content: flex-end;
  z-index: 100;
  
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.59);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
  box-shadow: 0 0.25rem 1.875rem rgba(0, 0, 0, 0.08);
  border: thin solid #eae8dc28;
}

.menu-scrolled {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .menu-scrolled {
  padding: 0 2rem;
  height: 4rem;
  display: block;
  position: relative;
}

.header__name {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.3;
  letter-spacing: -0.09rem;
  color: var(--multi-brown-mid);
  white-space: nowrap;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header__name {
  font-size: 1.575rem;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  margin: 0;
}

.header__profile-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.header.scrolled .header__profile-img {
  position: absolute;
  right: 1.25rem;
  left: auto;
  top: 50%;
  transform: translateY(-50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}


.header__tiktok .tiktok-logo-header {
  height: 1.875rem;
  width: 1.875rem;
  border: none;
}

.header__line {
  align-self: center;
  width: 22.5rem;
  height: 0.0625rem;
  transition: opacity 0.4s ease-out;
}

.header.scrolled .header__line {
  opacity: 0;
  pointer-events: none;
}

.header__line svg {
  display: block;
  width: 100%;
  height: 0.0625rem;
}

/* Profile */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.profile__img {
  width: 9.7812rem;
  height: 9.7812rem;
  object-fit: cover;
  border-radius: 0;
}

.profile__label {
  font-family: '42dot Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-400);
  white-space: nowrap;
}

/* Hero Texts */
.hero-texts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

.headline-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  color: var(--gray-50);
  width: 100%;
}

.headline-hero__emoji {
  font-size: 2.419rem;
  line-height: 1.3;
}

.headline-hero__text {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  line-height: 1.3;
  width: 100%;
  color: var(--gray-50);
  margin: 0 auto;
}

.headline-hero__text em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

.hero-texts__sub {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--gray-200);
  width: 100%;
}

/* CTA Button */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: white;
  border: 0.0625rem solid var(--gray-400);
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover {
  background: var(--gray-200);
  border-color: var(--gray-200);
  /*transform: translateY(-0.125rem);*/
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta__text {
  font-family: '42dot Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-700);
  white-space: nowrap;
}

.btn-cta__icon {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
}


/* ===================================
   SERVICE SECTION
   =================================== */
.service-section {
  background: var(--multi-brown-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 2.5rem 0 6.25rem;
  /*width: 22.5rem;*/
  width: 100%;
  min-height: 39.375rem;
  position: relative;
  overflow: hidden;
}

.service-section__bg {
  position: absolute;
  top: -0.6556rem;
  left: 0rem;
  width: 100%;
  height: 44.1262rem;
  pointer-events: none;
  overflow: hidden;
}

/* Dark overlay for text contrast */
.service-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.service-section__bg-img {
  position: absolute;
  /*left: -12.76%;*/
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Personal Text */
.personal-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 20rem;
  position: relative;
  z-index: 1;
}

.personal-text__titles {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--gray-50);
  text-align: center;
}

.personal-text__titles p {
  margin: 0;
}

.personal-text__line {
  width: 100%;
  height: 0.0625rem;
}

.personal-text__line svg {
  display: block;
  width: 100%;
  height: 0.0625rem;
}

/* Service Content */
.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  color: var(--multi-brown-mid);
  line-height: 1.3;
}

.service-content__headline {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  text-align: center;
  width: 100%;
}

.service-content__sub {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  white-space: nowrap;
}

.service-content__sub em {
  font-style: italic;
}

/* Stylist Card */
.cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.stylist-card {
  border: 0.25rem solid rgba(248, 249, 250, 0.14);
  border-radius: 0.5rem;
  position: relative;
  z-index: 1;
}

.stylist-card__inner {
  background: var(--gray-50);
  border-radius: 0.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  width: 16.25rem;
}

.stylist-card__title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--gray-800);
  white-space: nowrap;
}

.stylist-card__line {
  width: 100%;
  height: 0.0625rem;
}

.stylist-card__line svg {
  display: block;
  width: 100%;
  height: 0.0625rem;
}

.stylist-card__list {
  font-family: '42dot Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-800);
  text-align: center;
}

.stylist-card__list p {
  margin: 0;
}

/* Service bottom text */
.service-section__bottom {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--gray-200);
  width: 14.25rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ===================================
   CERTIFICATES
   =================================== */
.certificates {
  background: var(--multi-brown-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2.5rem 1.25rem 6.25rem;
  width: 100%;
}

.certificates__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certificates__text {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--gray-800);
  text-align: center;
  width: 100%;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 1.5rem;
}

.certificates__img {
  width: 75%;
  max-width: 76rem;
  height: auto;
}

/* ===== PRICES ===== */
.prices {
  background: var(--multi-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2.5rem 1.25rem 6.25rem;
  width: 100%;
}

.prices__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prices__text {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--gray-800);
  text-align: center;
  width: 100%;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 2rem;
  padding: 0 1.25rem;
}
.prices__sub-text {
  font-family: 'Instrument Serif', serif;
  font-size: 1.75rem;
  line-height: 1.3;
  color: var(--gray-600);
  text-align: center;
  width: 100%;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  
  padding: 0 1.25rem;
}

.header__line_prices {
  width: 100%;
  height: 0.0625rem;
}

.header__line_prices svg {
  display: block;
  width: 100%;
  height: 0.0625rem;
}

/* Price Cards */
.card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 30rem;
  gap: 1rem;
  padding: 2rem;
  justify-content: start;
  align-items: flex-start;
  border: 0.125rem solid transparent;
  border-radius: 0.5rem;
  background: 
    linear-gradient(var(--multi-light), var(--multi-light)) padding-box,
    linear-gradient(107deg, rgba(173, 181, 189, 0.15) -4.03%, #505357 174.06%) border-box;
  transition: all 0.3s ease;
}

.card:hover {
  background: var(--gray-900) !important;
}

.card:hover .price-cards__title,

.card:hover .total-price {
  color: var(--gray-50);
}

.card:hover .price-cards__sub-title {
  color: var(--gray-200);
}

.price-cards__title {
  font-family: '42dot Sans', sans-serif;
  font-size: 2rem;
  color: var(--gray-900);
  width: 100%;
  font-weight: 900;
  margin: 0;
  padding: 0;
  text-align: left;
  transition: color 0.3s ease;
}

.price-cards__sub-title {
  font-family: '42dot Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--gray-700);
  width: 100%;
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-align: left;
  transition: color 0.3s ease;
}

.total-price {
  font-size: 2.5rem;
  font-weight: 800;
  transition: color 0.3s ease;
}

/* ===== PAYMENTS ===== */
.payments {
  background: var(--multi-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2.5rem 1.25rem 6.25rem;
  width: 100%;
}

.payments__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payments__text {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--gray-800);
  text-align: center;
  width: 100%;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 2rem;
  padding: 0 1.25rem;
}

.payments__logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 7.5rem;
  padding: 0 0 1.5rem 0;
}

.payments__text_paypal {
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--gray-800);
  text-align: center;
  width: 100%;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 2rem;
  padding: 0 1.25rem;
}




/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background: var(--multi-purple-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.25rem 0 6.25rem;
  width: 100%;
}

.cta-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section__text {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--gray-400);
  text-align: center;
  width: 20rem;
}


/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--gray-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0 0;
  width: 100%;
}

.footer__name {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.09rem;
  color: var(--gray-400);
  white-space: nowrap;
}

.footer__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 0 2.5rem;
}

.tiktok-logo {
  width: 2.375rem;
  height: 2.375rem;
}

/* Contact */
.contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  transition: opacity 0.2s ease;
}

.contact__item:hover {
  opacity: 0.8;
}

.contact__icon {
  flex-shrink: 0;
}

.contact__icon--phone {
  width: 1.125rem;
  height: 1.125rem;
}

.contact__icon--email {
  width: 1.125rem;
  height: 1.125rem;
}

.contact__icon--tiktok {
  width: 1.125rem;
  height: 1.125rem;
}

.contact__item span {
  font-family: '42dot Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-600);
  white-space: nowrap;
}

/* Footer bottom */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 20rem;
}

.btn-back-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  border: 0.0312rem solid var(--gray-500);
  border-radius: 0.5rem;
  cursor: pointer;
  color: var(--gray-500);
  transition: all 0.3s ease;
  background: transparent;
}

.btn-back-top:hover {
  border-color: var(--gray-200);
  color: var(--gray-200);
  /*transform: translateY(-0.0625rem);*/
}

.btn-back-top span {
  font-family: '42dot Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.5;
  color: inherit;
  white-space: nowrap;
}

.btn-back-top__icon {
  width: 0.75rem;
  height: 0.75rem;
}

.btn-back-top__icon path {
  fill: currentColor;
}

.footer__location {
  font-family: '42dot Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--gray-500);
  white-space: nowrap;
}

/* Footer brand */
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.footer__brand-line {
  width: 21.125rem;
  height: 0.0625rem;
}

.footer__brand-line svg {
  display: block;
  width: 100%;
  height: 0.0625rem;
  background: linear-gradient(90deg, rgba(173, 181, 189, 0.00) 0%, rgba(173, 181, 189, 0.50) 50%, rgba(173, 181, 189, 0.00) 100%);
}

.footer__brand-text-wrapper {
  overflow: hidden;
  height: 4.0625rem;
  width: 21.125rem;
}

.footer__brand-text {
  font-family: 'Instrument Serif', serif;
  font-size: 6.25rem;
  line-height: 1;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 0.0625rem var(--gray-600);
  text-stroke: 0.0625rem var(--gray-600);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.35;
  width: 21.125rem;
}


/* ===================================
   ANIMATIONS
   =================================== */

/* Fade in on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Stagger children */
.animate-in:nth-child(1) { animation-delay: 0.05s; }
.animate-in:nth-child(2) { animation-delay: 0.12s; }
.animate-in:nth-child(3) { animation-delay: 0.19s; }
.animate-in:nth-child(4) { animation-delay: 0.26s; }
.animate-in:nth-child(5) { animation-delay: 0.33s; }

/* Initial state for scroll animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle pulse for emoji */
@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.headline-hero__emoji {
  animation: gentlePulse 3s ease-in-out infinite;
}


/* ===================================
   RESPONSIVE
   =================================== */

/* --- Mobile (24.375rem+) --- */
@media (min-width: 24.375rem) {
  /*body {
    background: var(--gray-900);
  }*/

  main {
  }

}

/* --- Tablet (48rem+) --- */
@media (min-width: 48rem) {
  main {
    max-width: 120rem;
  }

  .hero {
    padding: 12.5rem 2.5rem 6.25rem;
    gap: 3rem;
  }

  .hero__bg {
    width: 100%;
    height: 100%;
    left: 0;
  }

  .header__name {
    font-size: 2.75rem;
  }

  .header.scrolled .header__name {
    font-size: 1.925rem;
  }

  .profile__img {
    width: 11.875rem;
    height: 11.875rem;
  }

  .profile__label {
    font-size: 1.125rem;
  }

  .headline-hero__text {
    font-size: 2.375rem;
    width: 100%;
    padding: 0;
  }

  .hero-texts__sub {
    font-size: 1.375rem;
    width: 100%;
    padding: 0;
  }

  .btn-cta {
    padding: 1.125rem 2.5rem;
  }

  .btn-cta__text {
    font-size: 1.125rem;
  }

  .service-section {
    padding: 3.5rem 2.5rem 6.25rem;
    gap: 2.25rem;
    min-height: 43.75rem;
  }

  .service-section__bg {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }

  .service-section__bg-img {
    width: 100%;
  }

  .personal-text {
    max-width: 30rem;
  }

  .personal-text__titles {
    font-size: 2.375rem;
  }

  .service-content__headline {
    font-size: 2.25rem;
    max-width: 100%;
  }

  .service-content__sub {
    font-size: 1.75rem;
  }

  .stylist-card__inner {
    width: 21.25rem;
    padding: 1.5rem;
  }

  .stylist-card__title {
    font-size: 1.75rem;
  }

  .stylist-card__list {
    font-size: 1.125rem;
  }

  .service-section__bottom {
    font-size: 1.75rem;
    width: 80%;
  }

  .certificates__text {
    font-size: 2.75rem;
  }


  .cta-section {
    padding: 2.5rem 2.5rem 6.25rem;
    gap: 3rem;
  }

  .cta-section__text {
    font-size: 1.5rem;
    max-width: 30rem;
  }

  .footer {
    padding: 2rem 2.5rem 0;
    gap: 2.5rem;
  }

  .footer__name {
    font-size: 1.875rem;
  }

  .contact__item span {
    font-size: 0.875rem;
  }

  .footer__bottom {
    max-width: 30rem;
  }

  .footer__brand-text-wrapper {
    width: 100%;
    height: 5rem;
  }

  .footer__brand-text {
    font-size: 7.5rem;
    width: 100%;
  }

  .footer__brand-line {
    width: 100%;
  }

  .btn-back-top span {
    font-size: 1.25rem;
    font-weight: 800;
  }
}

/* --- Desktop (76rem+) --- */
@media (min-width: 76rem) {
  main {
    max-width: 120rem;
  }


  .hero {
    padding: 12.5rem 3.75rem 6.25rem;
    gap: 3.5rem;
  }

  .hero__bg {
    width: 100%;
    height: 100%;
    left: 0;
  }

  .header {
    max-width: 76rem;
    border-radius: 1rem;
    top: 1rem;
  }

  .header__name {
    font-size: 3.25rem;
  }

  .header__profile-img {
    width: 3.125rem;
    height: 3.125rem;
  }

  .profile__img {
    width: 13.75rem;
    height: 13.75rem;
  }

  .profile__label {
    font-size: 1.25rem;
  }

  .headline-hero__emoji {
    font-size: 3rem;
  }

  .headline-hero__text {
    font-size: 2.75rem;
    width: 60%;
  }

  .hero-texts {
    gap: 3rem;
  }

  .hero-texts__sub {
    font-size: 2rem;
    width: 100%;
  }

  .btn-cta {
    padding: 1.25rem 3rem;
  }

  .btn-cta__text {
    font-size: 1.25rem;
  }

  .btn-cta__icon {
    width: 0.875rem;
    height: 0.875rem;
  }

  .service-section {
    padding: 4.5rem 3.75rem 8.75rem;
    gap: 2.75rem;
    min-height: 50rem;
  }

  .personal-text {
    max-width: 37.5rem;
  }

  .personal-text__titles {
    font-size: 2.75rem;
  }

  .service-content__headline {
    font-size: 2.625rem;
    max-width: 100%;
  }

  .service-content__sub {
    font-size: 2rem;
  }

  .prices {
    gap: 6rem;
  }

.prices__text {
  font-size: 2.75rem;
  width: 60%;
}

.prices__sub-text {
  font-size: 2rem;
}

  .cards {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
}

  .stylist-card__inner {
    width: 26.25rem;
    padding: 2rem;
  }

  .stylist-card__title {
    font-size: 2rem;
  }

  .stylist-card__list {
    font-size: 1.25rem;
  }

  .service-section__bottom {
    font-size: 2rem;
    width: 31.25rem;
  }

  .cta-section {
    padding: 3.5rem 3.75rem 6.25rem;
    gap: 3.5rem;
  }

  .cta-section__text {
    font-size: 1.75rem;
    width: 100%;
  }

  .footer {
    padding: 3rem 3.75rem 0;
    gap: 3rem;
  }

  .footer__name {
    font-size: 2.25rem;
  }

  .tiktok-logo {
    width: 3.125rem;
    height: 3.125rem;
  }

  .contact__item span {
    font-size: 1.25rem;
  }

  .contact__icon--phone {
    width: 1.125rem;
    height: 1.125rem;
  }

  .contact__icon--email {
    width: 1.125rem;
    height: 1.125rem;
  }

  .contact__icon--tiktok {
    width: 1.125rem;
    height: 1.125rem;
  }

  .contact {
    gap: 0.75rem;
  }

  .footer__bottom {
    max-width: 37.5rem;
  }

  .btn-back-top span {
    font-size: 1.25rem;
    font-weight: 800;
  }

  .footer__location {
    font-size: 0.875rem;
  }

  .footer__brand-text-wrapper {
    height: 9.9375rem;
  }

  .footer__brand-text {
    font-size: 14.375rem;
  }
}
