:root {
  --cream: #faf2eb;
  --dark: #3d2420;
  --rose: #8f524a;
  --soft: #f5ede4;
  --text: #000000;
  --white: #ffffff;
  --shadow: 0 203px 57px rgba(232, 201, 176, 0), 0 130px 52px rgba(232, 201, 176, 0.01), 0 73px 44px rgba(232, 201, 176, 0.05), 0 33px 33px rgba(232, 201, 176, 0.09), 0 8px 18px rgba(232, 201, 176, 0.1);
  --body: "Parkinsans", Arial, sans-serif;
  --display: "Bricolage Grotesque", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(143, 82, 74, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 5000;
  border-radius: 40px;
  background: var(--dark);
  color: var(--soft);
  padding: 10px 18px;
}

.skip-link:focus {
  top: 16px;
}

.container-figma {
  width: min(1284px, calc(100% - 44px));
  margin: 0 auto;
}

.section-space {
  padding: 70px 0 0;
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  color: var(--soft);
  transition: background-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(61, 36, 32, 0.94);
  box-shadow: 0 18px 45px rgba(61, 36, 32, 0.16);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  height: 145px;
  transition: height 220ms ease;
}

.logo {
  display: inline-flex;
  width: 147px;
  align-items: center;
  transition: width 220ms ease;
}

.site-header.is-scrolled .header-inner {
  height: 86px;
}

.site-header.is-scrolled .logo {
  width: 154px;
}

.logo img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  margin-left: 0;
}

.desktop-nav a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 15px;
  overflow: hidden;
  border-radius: 40px;
  color: var(--soft);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.2;
  text-transform: capitalize;
  transition: color 180ms ease, transform 180ms ease;
}

.desktop-nav a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--dark);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 260ms ease;
}

.site-header.is-scrolled .desktop-nav a::before {
  background: var(--soft);
}

.site-header.is-scrolled .desktop-nav a:hover {
  color: var(--dark);
}

.desktop-nav a:hover {
  transform: translateY(-1px);
}

.desktop-nav a:hover::before {
  transform: scaleY(1);
}

.mobile-menu-btn {
  display: none;
}

.hero {
  position: relative;
  min-height: 795px;
  overflow: hidden;
}

.ambient-sparks {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-spark {
  position: absolute;
  left: var(--spark-left, 110%);
  top: var(--spark-top, 12%);
  width: var(--spark-size, 12px);
  height: var(--spark-size, 12px);
  color: rgba(245, 237, 228, 0.9);
  opacity: 0;
  filter: drop-shadow(0 0 9px rgba(245, 237, 228, 0.72));
  transform: translate3d(0, 0, 0) rotate(var(--spark-rotate, 0deg));
  animation: ambientSpark var(--spark-duration, 12s) linear infinite;
  animation-delay: var(--spark-delay, 0s);
}

.ambient-spark::before,
.ambient-spark::after {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.ambient-spark::before {
  width: 100%;
  height: max(2px, calc(var(--spark-size, 12px) * 0.16));
  top: 50%;
  transform: translateY(-50%);
}

.ambient-spark::after {
  width: max(2px, calc(var(--spark-size, 12px) * 0.16));
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(66deg, rgba(61, 36, 32, 0.82) 0%, rgba(61, 36, 32, 0.52) 33%, rgba(143, 82, 74, 0) 63%), url("../images/hero-bg.webp");
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 181px;
  color: var(--soft);
}

.hero-kicker {
  margin: 0 0 19px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1;
  text-transform: capitalize;
}

.hero h1 {
  max-width: 623px;
  margin: 0;
  color: var(--soft);
  font-family: var(--display);
  font-size: 70px;
  font-weight: 800;
  line-height: 1.055;
}

.dream-word {
  position: relative;
  display: inline-block;
}

.dream-word img {
  position: absolute;
  right: -25px;
  top: -16px;
  width: 55px;
  height: auto;
  transform: rotate(9deg);
  pointer-events: none;
}

.hero-copy {
  max-width: 592px;
  margin: 23px 0 0;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 23px;
}

.hero-course-btn {
  display: none;
}

.btn {
  border-radius: 109px;
  border: 1.2px solid rgba(0, 0, 0, 0.2);
  padding: 16.9px 29px;
  font-family: var(--body);
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.service-card a .button-icon {
  width: 18px;
  height: 18px;
}

.btn-dark-figma {
  width: 333px;
  min-height: 63px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--dark);
  color: var(--soft);
  font-size: 22px;
}

.btn-primary-figma {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--rose);
  color: var(--soft);
  font-size: 21.7px;
}

.btn-outline-figma,
.btn-ghost-figma {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-color: var(--rose);
  background: transparent;
  color: var(--dark);
  font-size: 21.7px;
}

.moving-border {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--dark), var(--dark)) padding-box,
    linear-gradient(90deg, rgba(245, 237, 228, 0.28), #f5ede4, #c89892, #f5ede4, rgba(245, 237, 228, 0.28)) border-box;
  background-size: 100% 100%, 220% 100%;
  box-shadow: 0 12px 30px rgba(61, 36, 32, 0.25);
  animation: borderSlide 2.4s linear infinite;
}

@keyframes borderSlide {
  to {
    background-position: 0 0, 220% 0;
  }
}

.hero-stats {
  display: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 576px 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 576px;
  height: 650px;
  border-radius: 40px;
  object-fit: cover;
}

.section-kicker,
.section-title p {
  margin: 0;
  font-family: var(--body);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 7.28px;
  line-height: 1.2;
  text-align: center;
}

.about-text .section-kicker {
  text-align: left;
}

h2 {
  margin: 0;
  color: var(--dark);
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
  line-height: 54px;
}

.about-text h2 {
  margin-top: 20px;
  max-width: 658px;
}

.about-text p:not(.section-kicker) {
    margin: 20px 0 0;
    max-width: 658px;
    font-size: 18px;
    font-weight: 300;
    line-height: 30.5px;
}
.mobile-only {
  display: none;
}

.about-badges {
  display: flex;
  gap: 32px;
  margin: 20px 0;
}

.about-badges article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 137px;
  height: 137px;
  text-align: center;
border-radius: 20px;
border: 1px solid #C89892;
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 9px;
  border-radius: 50%;
  background: rgba(143, 82, 74, 0.14);
  color: var(--rose);
  font-family: var(--display);
  font-weight: 800;
}

.about-badges img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  object-fit: contain;
}

.about-badges strong {
  max-width: 115px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.section-title {
  margin: 0 auto 35px;
  text-align: center;
}

.section-title h2 {
  margin-top: 3px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.service-card {
  min-height: auto;
  padding: 10px 10px 29px;
  border-radius: 40px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.why-card:hover,
.course-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 208px;
  border-radius: 30px;
  object-fit: cover;
}

.service-card div {
  padding: 21px 11px 0;
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 800;
  line-height: 36px;
}

.service-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.service-card a {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 19px;
  color: var(--rose);
  font-size: 22px;
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 43px 36px;
}

.why-card {
  min-height: auto;
  padding: 23px 26px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.why-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  object-fit: contain;
}

.why-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 25px;
font-style: normal;
font-weight: 700;
  line-height: 30px;
}

.why-card p {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.7;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 43px 36px;
}

.portfolio-grid img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 220ms ease;
}

.portfolio-grid img:hover {
  transform: scale(1.025);
}

.mobile-carousel {
  display: none;
}

.packages {
  color: var(--dark);
}

.packages .section-title {
  margin-bottom: 30px;
}

.packages .section-title h2 {
  font-size: 48px;
  line-height: 54px;
}

.package-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 284px;
  max-width: 100%;
  min-height: 39px;
  margin: 0 auto 48px;
	  border: 1.5px solid var(--dark);
  border-radius: 22px;
}

.package-tabs button {
  border: 0;
  border-radius: 19px;
  background: transparent;
  color: var(--dark);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.package-tabs button:hover {
  transform: translateY(-1px);
}

.package-tabs button.is-active {
  background: var(--rose);
  color: var(--soft);
}

.package-panel {
  display: grid;
	}

.package-panel[hidden] {
  display: none;
}

.package-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
border-bottom: 1px solid #CCC;
    padding-bottom: 20px;
    padding-top: 20px;
}


.package-row h3 {
  margin: 0;
  color: var(--dark);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
}

.package-price {
  display: flex;
  align-items: center;
  gap: 24px;
}

.package-price del,
.package-price strong {
  color: var(--dark);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
}

.package-price del {
  font-weight: 400;
  opacity: 0.92;
  text-decoration-thickness: 1px;
}

.package-price strong {
  font-weight: 800;
}

.package-price span {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    min-height: 23px;
    border-radius: 40px;
    background: #eadbd9;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.package-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.package-note {
  margin: 30px 0 0;
  color: var(--dark);
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  text-align: center;
}

.package-actions .btn {
  min-height: 56px;
  font-size: 22px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 28px;
}

.review-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 26px 26px 24px;
  border: 1px solid rgba(143, 82, 74, 0.12);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-stars span {
  display: block;
  width: 18px;
  height: 18px;
  background: #fbbc04;
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
  filter: drop-shadow(0 3px 7px rgba(251, 188, 4, 0.28));
}

.review-google {
  display: inline-grid;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft);
  transition: transform 180ms ease;
}

.review-google:hover {
  transform: translateY(-2px);
}

.review-google img {
  width: 24px;
  height: auto;
  object-fit: contain;
}

.review-card p {
  margin: 0;
  color: var(--dark);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.62;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.review-author span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rose);
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
}

.review-author strong {
  color: var(--dark);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.course-card {
  position: relative;
  min-height: 628px;
  padding: 37px 40px;
  border-radius: 40px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
  overflow: hidden;
}

.course-art {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.makeup-art {
    right: 0px;
    bottom: 186px;
    width: 113px;
}

.hair-art {
  right: 22px;
  top: 0;
  width: 61px;
}


.course-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-top span {
 align-self: flex-start;
    border: 1px solid var(--rose);
    border-radius: 40px;
    padding: 6px 14px;
    color: var(--rose);
    font-size: 16px;
    font-weight: 500;
}

.course-top h3 {
  margin: 0;
  color: var(--dark);
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
}

.course-top em {
  font-style: normal;
  font-weight: 400;
}

.course-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.course-card li {
  position: relative;
  padding-left: 38px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 300;
  line-height: 29px;
}

.course-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 29px;
  height: 29px;
  background: url("../images/list-icons.svg") center / contain no-repeat;
  content: "";
}

.course-actions {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 45px;
  display: flex;
  gap: 38px;
}

.course-actions .btn {
  flex: 0 0 auto;
  min-height: 61px;
  font-size: 21px;
}

.course-actions .btn-primary-figma {
  width: 264px;
}

.course-actions .btn-outline-figma {
  width: 253px;
}

.contact {
  padding-bottom: 83px;
}

.terms-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--dark);
  color: var(--soft);
}

.terms-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(61, 36, 32, 0.94), rgba(61, 36, 32, 0.76) 46%, rgba(143, 82, 74, 0.26)),
    url("../images/hero-bg.webp") center 42% / cover no-repeat;
  opacity: 0.96;
}

.terms-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 185px;
}

.terms-hero-content .section-kicker {
  color: var(--soft);
  text-align: left;
}

.terms-hero h1 {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--soft);
  font-family: var(--display);
  font-size: 74px;
  font-weight: 800;
  line-height: 1.02;
}

.terms-hero p:not(.section-kicker) {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 22px;
  font-weight: 300;
  line-height: 34px;
}

.terms-content {
  padding-bottom: 90px;
}

.terms-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 36px;
  align-items: start;
}

.terms-summary {
  position: sticky;
  top: 28px;
  padding: 34px;
  border: 1px solid rgba(143, 82, 74, 0.28);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.terms-summary p {
  margin: 0 0 6px;
  color: var(--rose);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.terms-summary strong {
  display: block;
  margin-bottom: 26px;
  color: var(--dark);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.08;
}

.terms-summary .btn {
  width: 100%;
  min-height: 58px;
  font-size: 18px;
}

.terms-list {
  display: grid;
  gap: 18px;
}

.terms-card {
  position: relative;
  padding: 32px 36px 32px 112px;
  border: 1px solid rgba(143, 82, 74, 0.24);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.terms-card span {
  position: absolute;
  left: 34px;
  top: 34px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: rgba(143, 82, 74, 0.12);
  color: var(--rose);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
}

.terms-card h2 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 32px;
  line-height: 38px;
}

.terms-card p,
.terms-card li {
  margin: 0;
  max-width: 790px;
  color: var(--text);
font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

.terms-card p + p,
.terms-card p + ul,
.terms-card ul + p {
  margin-top: 14px;
}

.terms-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-card li {
  position: relative;
  padding-left: 22px;
}

.terms-card li::before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  content: "";
}

.terms-card strong {
  color: var(--dark);
  font-weight: 800;
}

.terms-card a {
  color: var(--rose);
  font-weight: 700;
  text-decoration: underline;
}

.contact-title {
  margin-bottom: 35px;
  text-align: center;
}

.contact-title h2 {
  color: var(--dark);
}

.contact-title p {
  margin: 3px 0 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 124px;
  border: 1px solid var(--rose);
  border-radius: 20px;
  color: var(--rose);
  transition: transform 180ms ease;
}

.contact-card > img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.contact-card span span,
.contact-card strong,
.contact-card em {
  display: block;
}

.contact-card strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.contact-card em {
  margin-top: 7px;
  font-style: normal;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
}

.footer {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--soft);
}

.footer .ambient-spark {
  color: rgba(245, 237, 228, 0.82);
  filter: drop-shadow(0 0 8px rgba(245, 237, 228, 0.62));
}

.footer-grid,
.footer-marquee,
.copyright {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 325px 341px 392px;
  justify-content: space-between;
  gap: 30px;
  padding: 80px 0 27px;
}

.footer p,
.footer a {
  color: var(--soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
margin:unset;
}

.footer-logo {
  margin-bottom: 0px;
  color: var(--soft);
}

.footer h2 {
  margin-bottom: 18px;
  color: var(--soft);
  font-family: var(--display);
  font-size: 22px;
  line-height: 26px;
}

.footer-links {
  display: grid;
  grid-template-columns: 125px 208px;
  gap: 8px 8px;
  align-items: start;
}

.footer-link-column {
  display: grid;
  gap: 14px;
}

.footer-links a {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-link img {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  filter: brightness(0) saturate(100%) invert(92%) sepia(14%) saturate(227%) hue-rotate(335deg) brightness(107%) contrast(92%);
  opacity: 0.92;
}

.footer-contact-link span {
  display: block;
}

.footer-contact-link + .footer-contact-link {
  margin-top: 14px;
}

.footer-address {
  margin-bottom: 0;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.footer-socials a {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(245, 237, 228, 0.42);
  border-radius: 50%;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.footer-socials a:hover {
  border-color: var(--soft);
  background: rgba(245, 237, 228, 0.12);
  transform: translateY(-2px);
}

.footer-socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(92%) sepia(14%) saturate(227%) hue-rotate(335deg) brightness(107%) contrast(92%);
}

.footer-whatsapp {
  width: 269px;
  min-height: 61px;
  margin-top: 14px;
  font-size: 18px;
}

.footer-marquee {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 5px 22px 6px;
  background: transparent;
  border-top: 1px solid rgba(245, 237, 228, 0.16);
  border-bottom: 1px solid rgba(245, 237, 228, 0.16);
  color: var(--soft);
  font-size: 18px;
  line-height: 27px;
  text-align: center;
}

.footer-marquee a {
     color: var(--soft);
    text-decoration: underline;
     font-size: 18px;
    font-weight: 800;

}

.copyright {
  padding: 14.5px 22px;
  background: var(--dark);
  color: var(--soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  text-align: center;
}

.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-dim {
  position: absolute;
  inset: 70px 0 0;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mobile-panel {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  min-height: 592px;
  padding: 0 21px 32px;
  background: var(--white);
  transform: translateY(-18px);
  opacity: 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

.mobile-menu.is-open .mobile-dim,
.mobile-menu.is-open .mobile-panel {
  opacity: 1;
}

.mobile-menu.is-open .mobile-panel {
  transform: translateY(0);
}

.mobile-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.mobile-logo {
  width: 114px;
  color: var(--rose);
}

.mobile-panel .mobile-logo img {
  filter: brightness(0) saturate(100%) invert(38%) sepia(17%) saturate(1113%) hue-rotate(321deg) brightness(91%) contrast(86%);
}

.mobile-close {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
}

.mobile-close::before,
.mobile-close::after {
  position: absolute;
  left: 5px;
  top: 17px;
  width: 29px;
  height: 3px;
  background: var(--rose);
  content: "";
}

.mobile-close::before {
  transform: rotate(45deg);
}

.mobile-close::after {
  transform: rotate(-45deg);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 29px;
  padding-top: 20px;
}

.mobile-links a {
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
}

.mobile-whatsapp {
  width: 100%;
  min-height: 61px;
  margin-top: 29px;
  font-size: 18px;
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 76px;
  }

  .container-figma {
    width: min(100% - 44px, 720px);
  }

  .site-header {
    color: var(--soft);
  }

  .header-inner {
    height: 70px;
    justify-content: space-between;
  }

  .site-header.is-scrolled .header-inner {
    height: 70px;
  }

  .site-header.is-scrolled .logo {
    width: 114px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .mobile-menu-btn img {
    width: 36px;
    height: 36px;
    object-fit: contain;
  }

  .logo {
    width: 114px;
  }

  .hero {
    min-height: 550px;
  }

  .hero-bg {
    background-image: url("../images/Mobile_hero.webp");
    background-position: center top;
    background-size: cover;
  }

  .hero-content {
    padding-top: 108px;
  }

  .hero-kicker {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.42;
  }

  .hero-kicker span {
    display: block;
  }

  .hero h1 {
    max-width: 282px;
    font-size: 32px;
    line-height: 1.34;
  }

  .dream-word img {
    right: -17px;
    top: -9px;
    width: 27px;
    transform: rotate(15deg);
  }

  .hero-copy {
    max-width: 331px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    flex-direction: column;
    gap: 9.5px;
    margin-top: 31px;
  }

  .hero-course-btn {
    display: inline-flex;
    width: 218px;
    min-height: 42px;
    border-color: var(--soft);
    color: var(--white);
    font-size: 15px;
    padding: 11px 14px;
  }

  .btn-dark-figma {
    width: 100%;
    max-width: 331px;
    min-height: 63px;
    padding: 15px 22px;
    font-size: 20px;
    white-space: nowrap;
  }

  .hero-stats {
    display: none;
  }

  .hero-stats article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 96.25px;
    height: 96.25px;
    border-radius: 11.6px;
    background: rgba(61, 36, 32, 0.73);
    color: var(--soft);
    text-align: center;
  }

  .hero-stats .stat-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 7px;
    background: rgba(245, 237, 228, 0.13);
    color: var(--soft);
    font-size: 11px;
  }

  .hero-stats img {
    width: 35px;
    height: 35px;
    margin-bottom: 7px;
    filter: brightness(0) saturate(100%) invert(94%) sepia(8%) saturate(443%) hue-rotate(338deg) brightness(102%) contrast(92%);
  }

.hero-stats strong {
  max-width: 81px;
  font-size: 10.4px;
  font-weight: 400;
  line-height: 14.5px;
}

.hero-stats img {
  width: 35px;
  height: 35px;
  margin-bottom: 7px;
  object-fit: contain;
}

  .section-space {
    padding-top: 38px;
  }

  .about.section-space {
    padding-top: 24px;
  }

  .about-grid,
  .service-grid,
  .why-grid,
  .course-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 0;
  }

  .about-image {
    order: 3;
    margin-top: 5px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .about-text {
    display: contents;
  }

  .about-text .section-kicker {
    order: 1;
    width: 100%;
    margin: 0 0 5px;
    font-size: 18px;
    letter-spacing: 4.68px;
    line-height: 1.2;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border: 0;
    border-radius: 0;
  }

  .about-text h2 {
    order: 2;
    margin-top: 0;
    font-size: 26px;
    line-height: 31px;
    text-align: center;
  }

  .about-text p:not(.section-kicker) {
    order: 5;
    margin: 5px 0 0;
    font-size: 16px;
    line-height: 25px;
  }

  .about-badges {
    order: 4;
    display: flex;
    gap: 10px;
    margin: 18px 0 0;
    width: 100%;
  }

  .about-badges article {
    width: calc((100% - 20px) / 3);
    height: 96px;
    border: 1px solid #c89892;
    border-radius: 12px;
    background: transparent;
    color: var(--dark);
  }

  .about-badges img {
    width: 35px;
    height: 35px;
    margin-bottom: 7px;
    filter: none;
  }

  .about-badges strong {
    max-width: 81px;
    color: var(--dark);
    font-size: 10.4px;
    font-weight: 400;
    line-height: 14.5px;
  }

  .about-text .btn {
    order: 6;
    width: 186px;
    min-height: 50px;
    margin: 24px auto 0;
    padding: 13px 23px;
    font-size: 17px;
  }

  .mobile-only {
    display: block;
  }

  h2,
  .section-title h2 {
    font-size: 26px;
    line-height: 31px;
  }

  .section-title p {
    font-size: 14px;
    letter-spacing: 3.64px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .why-card h3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 9px;
  }

  .why-card {
    min-height: 190px;
    padding: 22px 26px;
  }

  .service-card p,
  .why-card p {
    font-size: 16px;
    line-height: 25px;
  }

  .why-grid,
  .service-grid,
  .reviews-grid,
  .course-grid {
    gap: 16px;
  }

  .desktop-gallery {
    display: none;
  }

  .mobile-carousel {
    display: block;
  }

  .reviews-grid {
    display: none;
  }

  .review-carousel {
    padding-bottom: 58px;
  }

  .review-card {
    min-height: 318px;
    padding: 24px 22px 22px;
    border-radius: 22px;
  }

  .review-card p {
    font-size: 14px;
    line-height: 1.62;
  }

  .review-stars span {
    width: 16px;
    height: 16px;
  }

  .review-carousel-controls {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: flex;
    gap: 14px;
    transform: translateX(-50%);
  }

  .review-carousel .figma-carousel-arrow {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-color: rgba(61, 36, 32, 0.28);
    background: var(--dark);
    color: var(--soft);
    transform: none;
  }

  .review-carousel .figma-carousel-arrow span {
    margin: 0;
    font-size: 30px;
    line-height: 1;
  }

  .packages .section-title {
    margin-bottom: 18px;
  }

  .packages .section-title h2 {
    font-size: 26px;
    line-height: 31px;
  }

  .package-tabs {
width: 270px;
        min-height: 39px;
        margin-bottom: 20px;
     
        border-radius: 270px;
  }

  .package-tabs button {
    font-size: 16px;
    border-radius: 64px;
  }

  .package-panel {
    gap: 0px;
  }

  .package-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(61, 36, 32, 0.14);
  }

  .package-row.package-gap {
    margin-top: 14px;
    padding-top: 20px;
  }

  .package-row h3 {
    font-size: 16px;
    line-height: 21px;
  }

  .package-price {
    display: grid;
    grid-template-columns: auto auto;
    gap: 6px 8px;
    justify-content: end;
    justify-items: end;
  }

  .package-price del,
  .package-price strong {
    font-size: 14px;
  }

  .package-price strong {
    min-width: auto;
  }

  .package-price span {
        grid-column: 1 / -1;
        justify-self: end;
        min-width: 67px;
        min-height: 19px;
        padding: 0 3px;
        font-size: 9px;
  }

  .package-actions {
    margin-top: 14px;
  }

  .package-note {
    margin-top: 28px;
    font-size: 12px;
    line-height: 19px;
  }

  .package-actions .btn {
    width: 240px;
    min-height: 56px;
    font-size: 16px;
  }

  .mobile-carousel .carousel-item {
    display: none;
  }

  .mobile-carousel .carousel-item.active {
    display: block;
  }

  .figma-carousel-arrow {
    top: 50%;
    bottom: auto;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(245, 237, 228, 0.7);
    border-radius: 50%;
    background: rgba(61, 36, 32, 0.72);
    color: var(--soft);
    opacity: 1;
    transform: translateY(-50%);
  }

  .carousel-control-prev.figma-carousel-arrow {
    left: 10px;
  }

  .carousel-control-next.figma-carousel-arrow {
    right: 10px;
  }

  .figma-carousel-arrow span {
    display: block;
    margin-top: -2px;
    font-size: 24px;
    line-height: 30px;
  }

  #portfolioCarousel .carousel-item > img {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    cursor: zoom-in;
  }

  .course-card {
    min-height: 530px;
    padding: 23px 18px;
    border-radius: 20px;
  }

  .course-top span {
    padding: 8px 16px;
    font-size: 10px;
  }

  .course-top h3 {
    font-size: 30px;
  }

  .course-card ul {
    gap: 10px;
    margin-top: 23px;
  }

  .course-card li {
    padding-left: 29px;
    font-size: 15px;
    line-height: 21px;
  }

  .course-card li::before {
    width: 21px;
    height: 21px;
  }

  .course-actions {
    left: 18px;
    right: 18px;
    bottom: 23px;
    gap: 6px;
  }

  .course-actions .btn {
    min-height: 45px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .course-actions .button-icon {
    width: 18px;
    height: 18px;
  }

  .course-actions .btn-primary-figma,
  .course-actions .btn-outline-figma {
    width: auto;
    flex: 1;
  }

  .makeup-art {
    top: 0;
    right: 0;
    bottom: auto;
    width: 86px;
  }

  .contact-title h2 {
    max-width: 318px;
    margin: 0 auto;
    font-size: 26px;
    line-height: 31px;
  }

  .contact-title p {
    max-width: 342px;
    margin: 3px auto 0;
    font-size: 16px;
    line-height: 25px;
  }

  .contact {
    padding-bottom: 45px;
  }

  .terms-hero {
    min-height: 430px;
  }

  .terms-hero-bg {
    background:
      linear-gradient(101deg, rgba(61, 36, 32, 0.94), rgba(143, 82, 74, 0.72) 55%, rgba(143, 82, 74, 0.38)),
      url("../images/Mobile_hero.webp") center top / cover no-repeat;
  }

  .terms-hero-content {
    padding-top: 112px;
  }

  .terms-hero-content .section-kicker {
    font-size: 14px;
    letter-spacing: 3.64px;
  }

  .terms-hero h1 {
    max-width: 310px;
    margin-top: 10px;
    font-size: 42px;
    line-height: 1.08;
  }

  .terms-hero p:not(.section-kicker) {
    max-width: 322px;
    margin-top: 17px;
    font-size: 15px;
    line-height: 24px;
  }

  .terms-content {
    padding-bottom: 45px;
  }

  .terms-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .terms-summary {
    position: static;
    padding: 22px;
    border-radius: 20px;
  }

  .terms-summary strong {
    margin-bottom: 18px;
    font-size: 26px;
  }

  .terms-summary .btn {
    min-height: 50px;
    font-size: 16px;
  }

  .terms-list {
    gap: 16px;
  }

  .terms-card {
    padding: 23px 22px;
    border-radius: 20px;
  }

  .terms-card span {
    position: static;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    font-size: 16px;
  }

  .terms-card h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .terms-card p,
  .terms-card li {
    font-size: 15px;
    line-height: 25px;
  }

  .terms-card ul {
    gap: 7px;
  }

  .terms-card li {
    padding-left: 20px;
  }

  .terms-card li::before {
    top: 10px;
    width: 6px;
    height: 6px;
  }

  .contact-grid {
    gap: 16px;
  }

  .contact-card {
    min-height: 83px;
    justify-content: flex-start;
    padding-left: 22px;
  }

  .contact-card > img {
    width: 42px;
    height: 42px;
  }

  .contact-card strong {
    font-size: 18px;
  }

  .contact-card em {
    font-size: 18px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .footer-grid {
    padding-top: 48px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .footer-marquee {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .container-figma {
    width: calc(100% - 44px);
  }

.float-wa {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 991.98px) {
  #portfolioCarousel .carousel-item:not(.active) {
    display: none !important;
  }

  #portfolioCarousel .carousel-item.active {
    display: block !important;
  }

  #portfolioCarousel .carousel-item > img {
    width: 100% !important;
    height: 400px !important;
    border-radius: 20px !important;
    object-fit: cover !important;
  }
}

body.is-mobile .desktop-gallery {
  display: none !important;
}

body.is-mobile .mobile-carousel {
  position: relative !important;
  display: block !important;
}

body.is-mobile #portfolioCarousel .carousel-item:not(.active) {
  display: none !important;
}

body.is-mobile #portfolioCarousel .carousel-item.active {
  display: block !important;
}

body.is-mobile #portfolioCarousel .carousel-item > img {
  width: 100% !important;
  height: 500px !important;
  border-radius: 20px !important;
  object-fit: cover !important;
}

body.is-mobile .figma-carousel-arrow {
  position: absolute !important;
  z-index: 6 !important;
  top: 250px !important;
  bottom: auto !important;
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(245, 237, 228, 0.7) !important;
  border-radius: 50% !important;
  background: rgba(61, 36, 32, 0.72) !important;
  color: var(--soft) !important;
  opacity: 1 !important;
  transform: translateY(-50%) !important;
}

body.is-mobile .review-carousel .figma-carousel-arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: static !important;
  transform: none !important;
}

body.is-mobile .review-carousel .figma-carousel-arrow span {
  margin: 0 !important;
  font-size: 30px !important;
  line-height: 1 !important;
}

body.is-mobile .carousel-control-prev.figma-carousel-arrow {
  left: 10px !important;
}

body.is-mobile .carousel-control-next.figma-carousel-arrow {
  right: 10px !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(92vw, 980px);
  max-height: 88vh;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.96);
  transition: transform 220ms ease;
}

.lightbox.is-open .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  right: 28px;
  top: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  left: 12px;
  top: 21px;
  width: 20px;
  height: 2px;
  background: var(--dark);
  content: "";
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

@keyframes ambientSpark {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(var(--spark-rotate, 0deg)) scale(0.45);
  }

  12% {
    opacity: var(--spark-opacity, 0.72);
  }

  82% {
    opacity: var(--spark-opacity, 0.72);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--spark-travel-x, -120vw), var(--spark-travel-y, 180px), 0) rotate(calc(var(--spark-rotate, 0deg) + 160deg)) scale(0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}
