:root {
  --bg: #f7f2f3;
  --bg-soft: #fcf9fa;
  --surface: #ffffff;
  --surface-alt: #f3eaec;
  --ink: #23171a;
  --ink-soft: #5f5256;
  --brand: #7b1f2d;
  --brand-2: #5f1622;
  --line: #e5d6da;
  --line-strong: #d4bfc5;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 10px 30px rgba(53, 23, 29, 0.08);
  --shadow-strong: 0 20px 50px rgba(32, 13, 17, 0.16);
  --header-h: 64px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: var(--header-h);
  scrollbar-width: thin;
  scrollbar-color: var(--brand) #eadde0;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #eadde0;
}

*::-webkit-scrollbar-thumb {
  background: var(--brand);
  border: 2px solid #eadde0;
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--brand-2);
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 420px at -20% -10%, #ffffff 0%, rgba(255, 255, 255, 0) 65%),
    radial-gradient(1000px 500px at 110% 10%, #f2e4e8 0%, rgba(242, 228, 232, 0) 70%),
    var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

main {
  background: #f9f3f5;
}

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

.container {
  width: min(1240px, 100% - 2rem);
  margin-inline: auto;
}

.section {
  --section-color: #f7f2f3;
  --prev-section-color: #f7f2f3;
  padding: clamp(3.2rem, 7vw, 6.4rem) 0;
  position: relative;
  min-height: calc(100svh - 64px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(900px 280px at 15% 0%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, color-mix(in srgb, var(--section-color) 95%, #ffffff 5%) 0%, var(--section-color) 100%);
  opacity: 0.86;
  filter: saturate(0.94);
  transition: opacity 520ms ease, filter 520ms ease;
}

.section.is-active-section {
  opacity: 1;
  filter: saturate(1);
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.is-active-section .reveal-item,
.site-footer.is-active-section .reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section + .section {
  padding-top: clamp(2.7rem, 6vw, 5rem);
}

.section + .section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -56px;
  height: 56px;
  pointer-events: none;
  opacity: 0.7;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--prev-section-color) 92%, #ffffff 8%) 0%,
    color-mix(in srgb, var(--prev-section-color) 52%, var(--section-color) 48%) 58%,
    color-mix(in srgb, var(--section-color) 92%, #ffffff 8%) 100%
  );
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,74 C100,24 200,24 300,74 C400,118 500,118 600,74 C700,24 800,24 900,74 C1000,118 1100,118 1200,74 L1200,120 L0,120 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,74 C100,24 200,24 300,74 C400,118 500,118 600,74 C700,24 800,24 900,74 C1000,118 1100,118 1200,74 L1200,120 L0,120 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  mask-position: center top;
}

.hero.section {
  --section-color: #f9f3f5;
}

#about.section {
  --section-color: #eee2e7;
  --prev-section-color: #f9f3f5;
}

#education.section {
  --section-color: #f6edf1;
  --prev-section-color: #eee2e7;
}

#expertise.section {
  --section-color: #e8d8df;
  --prev-section-color: #f6edf1;
}

#webinars.section {
  --section-color: #f4eaee;
  --prev-section-color: #e8d8df;
}

#news.section {
  --section-color: #ebdee4;
  --prev-section-color: #f4eaee;
}

#social-proof.section {
  --section-color: #f5ecef;
  --prev-section-color: #ebdee4;
}

#education .card,
#webinars .card,
#news .card {
  background: #fffafb;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  line-height: 0.98;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4.1vw, 3.4rem);
  color: var(--brand-2);
}

h3 {
  font-size: clamp(1.3rem, 2.3vw, 2rem);
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  border-bottom: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 56px;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(123, 31, 45, 0.11);
  border-bottom-color: transparent;
  border-radius: 16px;
  background: rgba(249, 243, 245, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.site-header .container.header-inner {
  width: calc(100% - 2rem);
  max-width: none;
  margin-inline: 1rem;
}

.logo-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-link {
  border: 1px solid color-mix(in srgb, var(--brand) 22%, #ffffff 78%);
  background: color-mix(in srgb, #ffffff 90%, var(--bg-soft) 10%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(67, 24, 33, 0.08);
}

.logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.logo-wordmark {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--brand-2);
  white-space: nowrap;
}

.header-section-title {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 360ms ease, transform 360ms ease;
  pointer-events: none;
}

.header-section-title span {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a646a;
  font-weight: 700;
}

.header-section-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header-controls {
  display: flex;
  gap: 0.42rem;
  align-items: center;
}

.quick-nav-wrap {
  width: calc(100% - 2rem);
  max-width: none;
  margin-inline: 1rem;
  margin-top: -1px;
  padding: 0 0 0.38rem;
  display: flex;
  justify-content: center;
}

.section-quick-nav {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  width: max-content;
  max-width: 100%;
  overflow-x: hidden;
  padding: 0.22rem 0.3rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand) 11%, #ffffff 89%);
  border-top-color: transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: rgba(249, 243, 245, 0.9);
  box-shadow: none;
  scrollbar-width: none;
}

.section-quick-nav::-webkit-scrollbar {
  display: none;
}

.quick-nav-link {
  border: 0;
  background: transparent;
  color: color-mix(in srgb, var(--brand-2) 58%, #ffffff 42%);
  opacity: 0.62;
  font: inherit;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 200ms ease, color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.quick-nav-link .material-symbols-outlined {
  font-size: 0.98rem;
}

.quick-nav-link:hover,
.quick-nav-link:focus-visible {
  opacity: 1;
  color: var(--brand-2);
  background: rgba(255, 255, 255, 0.64);
  transform: none;
}

.quick-nav-link.is-current {
  opacity: 1;
  color: var(--brand-2);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, #ffffff 78%);
}

.material-symbols-outlined {
  font-size: 1.08rem;
  line-height: 1;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-2);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.34rem 0.6rem;
}

.dropdown-toggle.icon-only {
  min-width: 33px;
  justify-content: center;
  padding-inline: 0.42rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.38rem);
  right: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 0.34rem;
  display: none;
  z-index: 50;
}

.dropdown-menu.is-open {
  display: block;
}

.dropdown-item {
  width: 100%;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  padding: 0.52rem 0.62rem;
  display: flex;
  align-items: center;
  gap: 0.56rem;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.dropdown-item:hover,
.dropdown-item.is-active {
  background: #f6ecef;
  color: var(--brand-2);
}

.flag-icon {
  width: 18px;
  height: 12px;
  display: inline-block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(22, 12, 16, 0.10);
  flex: 0 0 auto;
}

.hero {
  padding-top: clamp(1.3rem, 3vw, 2.1rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(320px, 640px);
  gap: clamp(1rem, 4vw, 3.4rem);
  align-items: end;
}

.hero-owner {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  object-position: left bottom;
  display: block;
  filter: drop-shadow(0 26px 35px rgba(38, 14, 20, 0.15));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 80%, rgba(0, 0, 0, 0.45) 93%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 80%, rgba(0, 0, 0, 0.45) 93%, transparent 100%);
}

.hero-content {
  align-self: center;
  max-width: 630px;
  text-align: left;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: #7c6d71;
  margin-bottom: 0.9rem;
}

.subtitle {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--brand);
  font-weight: 700;
}

.hero-copy {
  color: var(--ink-soft);
  max-width: 46ch;
  font-size: 1.07rem;
}

.hero-highlights {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: #4f4146;
  max-width: 62ch;
}

.hero-highlights li {
  position: relative;
  padding-left: 1.1rem;
}

.hero-highlights li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #7b1f2d 0%, #92253a 100%);
}

.btn-ghost {
  color: var(--brand-2);
  background: var(--surface);
  border-color: var(--line-strong);
}

.btn-small {
  min-height: 37px;
  font-size: 0.88rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.placeholder-box {
  display: grid;
  place-items: center;
  border: 1px dashed #c8aeb5;
  background: #f6edef;
  color: #81666d;
  text-align: center;
  padding: 1rem;
}

#about .about-block,
#portfolio .portfolio-block {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fcf7f8 100%);
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  align-items: start;
  width: 100%;
  min-height: 80svh;
}

#about .about-block {
  grid-template-areas:
    "slider text"
    "slider brands";
}

#portfolio .portfolio-block {
  grid-template-areas: "slider text";
}

#about.section,
#education.section,
#portfolio.section {
  align-items: flex-start;
  padding-top: clamp(1.2rem, 2.2vw, 1.9rem);
}

.about-slider {
  grid-area: slider;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem;
  border-right: 1px solid var(--line);
}

.about-track-wrap {
  overflow: hidden;
  width: 100%;
}

.about-track {
  display: flex;
  gap: 1rem;
  transition: transform 620ms ease-in-out;
}

.about-slide {
  flex: 0 0 min(62%, 520px);
  min-height: 430px;
  transform: scale(0.82);
  opacity: 0.5;
  transition: transform 420ms ease-in-out, opacity 420ms ease-in-out;
}

.about-slide img,
.about-slide video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

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

.about-nav {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--brand-2);
  border-radius: 999px;
  height: 44px;
  width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.about-text {
  grid-area: text;
  padding: 1.15rem 1.3rem 0.35rem;
  color: #4b3c40;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.3rem;
}

.about-text p {
  margin: 0;
}

#portfolio .portfolio-text {
  grid-template-columns: 1fr;
}

.portfolio-feature {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin: 1rem auto 0;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.brands {
  grid-area: brands;
  padding: 0.35rem 1.3rem 1.3rem;
}

.brands-title {
  font-weight: 600;
  color: var(--brand-2);
  margin-bottom: 0.8rem;
}

.brands ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.brands-logos li {
  min-width: 210px;
  min-height: 66px;
  padding: 0.42rem 0.72rem;
  border: 1px solid #eadcdf;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-logos img {
  max-width: 178px;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brands-logos li:nth-child(2) img {
  max-width: 220px;
  max-height: 58px;
  transform: scale(1.95);
  transform-origin: center;
}

#expertise .container,
#education .container,
#webinars .container,
#news .container,
#social-proof .container {
  display: grid;
  gap: 1.1rem;
}

.salon-card {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(0.8rem, 2vw, 1.25rem);
  width: 100%;
  max-width: 1160px;
  min-height: clamp(380px, 56svh, 520px);
  margin-inline: auto;
  border-radius: 14px;
  overflow: hidden;
  background: color-mix(in srgb, #ffffff 86%, var(--bg-soft) 14%);
  border: 1px solid var(--line);
  padding: clamp(0.75rem, 1.8vw, 1.2rem);
}

.salon-media {
  order: 2;
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: clamp(14px, 1.6vw, 24px);
  border: 1px solid #e5d6da;
  overflow: hidden;
  margin: 0;
  background: #fff;
  align-self: center;
}

.salon-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.salon-content {
  order: 1;
  padding: clamp(0.8rem, 2vw, 1.3rem);
  display: flex;
  flex-direction: column;
  background: transparent;
}

.salon-content h3 {
  margin-bottom: 0.5rem;
}

.salon-content p {
  color: var(--ink-soft);
}

.salon-divider {
  margin: 0.3rem 0 0.6rem;
  border-top: 1px solid var(--line);
}

.salon-contacts {
  list-style: none;
  margin: auto 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.salon-contacts li {
  display: flex;
  align-items: center;
  gap: 0.46rem;
  color: #4c4044;
}

.salon-contacts a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.salon-instagram-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.salon-action {
  margin-top: 0.45rem;
  display: flex;
  justify-content: flex-end;
}

.btn-book-link,
.btn-course-link {
  border-radius: 8px;
  min-height: 40px;
  padding: 0.52rem 0.95rem;
  gap: 0.45rem;
}

.btn-book-link .material-symbols-outlined,
.btn-course-link .material-symbols-outlined {
  font-size: 1rem;
}

#expertise .container {
  width: min(1240px, 100% - 2rem);
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 0;
}

.education-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  min-height: 80svh;
}

.education-image {
  min-height: 260px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.education-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.education-list {
  margin-top: 0;
  padding: 1.45rem 1.3rem;
  min-height: 80svh;
}

.education-list h3 {
  margin: 0.2rem 0 0.45rem;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  color: var(--brand-2);
}

.education-list p {
  margin: 0 0 0.32rem;
  color: #4d3f43;
}

.education-list .list {
  list-style: disc;
  padding: 0.15rem 0 0.4rem 1.15rem;
  margin: 0;
}

.education-list .list li {
  padding: 0;
  margin: 0.15rem 0;
}

.education-list .list li::before {
  content: none;
}

.education-extra-image {
  margin-top: 0.8rem;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  max-height: 340px;
}

.education-extra-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#education .container {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  align-items: start;
  min-height: 80svh;
}

.webinars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.webinar-card {
  overflow: hidden;
}

.webinar-card-featured {
  width: 100%;
}

.webinar-image {
  min-height: clamp(240px, 36vw, 360px);
  aspect-ratio: 16 / 9;
  border: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.webinar-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.webinar-content {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.webinar-content h3,
.webinar-content p {
  margin: 0;
}

.webinar-content p {
  color: var(--ink-soft);
}

.news-carousel {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 0.8rem;
}

.news-nav {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--brand-2);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.news-track-wrap {
  overflow: hidden;
  width: 100%;
}

.news-track {
  display: flex;
  gap: 1rem;
  transition: transform 620ms ease-in-out;
}

.news-item {
  flex: 0 0 min(68%, 860px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, #ffffff 88%, var(--bg-soft) 12%);
  min-height: 72svh;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.75rem;
  transform: scale(0.88);
  opacity: 0.56;
  transition: transform 420ms ease, opacity 420ms ease;
}

.news-item.is-active {
  transform: scale(1);
  opacity: 1;
}

.news-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #7f6b71;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-date time {
  font-weight: 700;
  color: var(--brand-2);
}

.news-latest-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 52%);
  align-items: start;
  gap: 0.95rem;
}

.news-image {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  clip-path: inset(0 round 18px);
}

.news-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}

.news-image-primary {
  min-height: clamp(300px, 46vh, 520px);
  aspect-ratio: auto;
}

.news-image-primary img {
  object-fit: cover;
  object-position: center;
}

.news-content {
  padding: 0.1rem 0.1rem;
  text-align: left;
}

.news-content h3 {
  margin: 0 0 0.7rem;
}

.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.news-list li {
  color: var(--ink-soft);
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.4;
}

.news-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

.reviews-flat {
  width: 100%;
  display: grid;
  gap: 0.9rem;
}

.reviews-summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.reviews-overall {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.reviews-average {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  line-height: 1;
  color: var(--brand-2);
}

.reviews-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.04rem;
}

.reviews-stars .material-symbols-outlined {
  font-size: 1.24rem;
  color: #d6c5ca;
}

.reviews-stars .material-symbols-outlined.is-on {
  color: #e1a600;
}

.reviews-count {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.reviews-meta {
  display: grid;
  gap: 0.15rem;
  justify-items: end;
  text-align: right;
}

.reviews-source {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7f6b71;
}

.reviews-place {
  font-size: 0.92rem;
  color: #524348;
  font-weight: 600;
}

.reviews-status,
.reviews-empty,
.reviews-disclaimer {
  color: #6b5a60;
  font-size: 0.92rem;
}

.reviews-empty {
  display: none;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  opacity: 1;
  transition: opacity 260ms ease-in-out;
}

.reviews-list.is-fading {
  opacity: 0;
}

.review-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.78rem;
  background: transparent;
  min-height: 170px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.5rem;
}

.review-item-cta {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.review-item-cta:hover {
  border-color: #c8aab3;
  background: color-mix(in srgb, #ffffff 92%, var(--bg-soft) 8%);
}

.review-item-cta[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

.review-cta-title {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  color: var(--brand-2);
  font-weight: 700;
}

.review-cta-title .material-symbols-outlined {
  font-size: 1.02rem;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: #fff;
}

.review-author-wrap {
  min-width: 0;
}

.review-author {
  font-size: 0.92rem;
  color: #44363a;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-time {
  font-size: 0.77rem;
  color: #857278;
}

.review-text {
  margin: 0;
  color: #4f4246;
  font-size: 0.92rem;
  line-height: 1.44;
}

.review-text.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scroll-indicator,
.to-top-btn {
  position: fixed;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--brand-2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  transition: opacity 240ms ease-in-out, transform 240ms ease-in-out, visibility 240ms ease-in-out;
}

.scroll-indicator .material-symbols-outlined,
.to-top-btn .material-symbols-outlined {
  font-size: 1.45rem;
}

.scroll-indicator {
  left: 50%;
  bottom: 1.2rem;
  transform: translate(-50%, 0);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  animation: indicatorPulse 1.8s ease-in-out infinite;
}

.scroll-indicator.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
}

.to-top-btn {
  right: 1.15rem;
  bottom: 1.15rem;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes indicatorPulse {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 7px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

.site-footer {
  margin-top: clamp(2.2rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #f7eef0 0%, #f0e3e7 100%);
  min-height: calc(100svh - 64px);
  display: flex;
  align-items: center;
  opacity: 0.86;
  filter: saturate(0.94);
  transition: opacity 520ms ease, filter 520ms ease;
}

.site-footer.is-active-section {
  opacity: 1;
  filter: saturate(1);
}

.footer-inner {
  padding: 2.6rem 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: #6d5a5f;
  font-size: 0.9rem;
  text-align: center;
}

.footer-contact {
  width: min(760px, 100%);
}

.footer-contact h2 {
  margin-bottom: 0.62rem;
}

.footer-contact p {
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 auto 1rem;
}

.footer-contact .contact-actions {
  justify-content: center;
}

.contact-email {
  margin: 0.1rem auto 0;
  font-size: 0.95rem;
}

.contact-email a {
  color: var(--brand-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.instagram-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-2);
  background: #fff;
}

.instagram-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    align-items: start;
  }

  .hero-owner {
    width: min(78vw, 420px);
    max-height: 500px;
    margin-inline: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .reviews-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero.section {
    /* Ensure floating header doesn't overlap the first screen content on larger phones. */
    padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 14px);
  }

  .hero-owner {
    width: min(46vw, 250px);
    max-height: 300px;
    margin-inline: auto;
  }

  .site-header {
    background: rgba(247, 242, 243, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(123, 31, 45, 0.08);
  }

  .site-header .container.header-inner {
    width: min(1240px, 100% - 1.2rem);
    margin-inline: auto;
  }

  .header-inner {
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0.22rem 0;
  }

  .quick-nav-wrap {
    width: 100%;
    margin-inline: 0;
    margin-top: 0;
    padding: 0.08rem 0 0.28rem;
    justify-content: stretch;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .quick-nav-wrap::-webkit-scrollbar {
    display: none;
  }

  .section-quick-nav {
    gap: 0.16rem;
    width: 100%;
    max-width: none;
    padding: 0 0.6rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
    min-width: max-content;
  }

  .quick-nav-link {
    font-size: 0.6rem;
    padding: 0.18rem 0.24rem;
    opacity: 0.82;
    background: transparent;
  }

  .quick-nav-link .material-symbols-outlined {
    display: none;
  }

  .logo-wordmark {
    display: none;
  }

  .section + .section::before {
    top: -30px;
    height: 30px;
    opacity: 0.55;
  }

  .section,
  .site-footer {
    min-height: auto;
    opacity: 1;
    filter: none;
  }

  .section {
    padding: 2.3rem 0;
  }

  .section + .section {
    padding-top: 2rem;
  }

  .reveal-item,
  .is-active-section .reveal-item,
  .site-footer.is-active-section .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .header-section-title {
    display: flex;
    flex: 1;
    min-width: 0;
    padding-inline: 0.3rem;
  }

  .header-section-title span {
    font-size: 0.64rem;
    letter-spacing: 0.11em;
  }

  .dropdown-menu {
    min-width: 190px;
  }

  #about .about-block,
  #portfolio .portfolio-block {
    display: block;
    min-height: auto;
  }

  .about-slider {
    grid-template-columns: 40px 1fr 40px;
    gap: 0.6rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-slide {
    flex-basis: min(78%, 400px);
    min-height: 250px;
  }

  .about-slide img,
  .about-slide video {
    min-height: 250px;
  }

  .about-text {
    display: block;
    padding: 1.1rem 1.1rem 0.4rem;
  }

  .about-text p {
    margin: 0 0 0.8rem;
  }

  .brands {
    padding: 0.65rem 1.1rem 1rem;
  }

  .brands-logos li {
    flex: 1 1 130px;
  }

  .portfolio-feature {
    width: min(100%, 360px);
  }

  #education .container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .education-gallery,
  .education-list {
    min-height: auto;
  }

  .education-image {
    min-height: 360px;
  }

  .education-extra-image {
    margin-top: 0.65rem;
    max-height: 260px;
  }

  .salon-card,
  .education-gallery,
  .webinars-grid {
    grid-template-columns: 1fr;
  }

  .salon-media,
  .education-image,
  .webinar-image,
  .news-image {
    min-height: 360px;
  }

  .webinar-image {
    min-height: clamp(440px, 68svh, 700px);
    aspect-ratio: auto;
    background: #fff;
  }

  .webinar-image img {
    object-fit: contain;
    object-position: center top;
    background: #fff;
  }

  .salon-media {
    order: 1;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    min-height: 0;
    border: 1px solid #e5d6da;
  }

  .salon-card {
    min-height: auto;
    border-radius: 12px;
    padding: 0.72rem;
  }

  .salon-content {
    order: 2;
  }

  .salon-contacts {
    margin: 0;
  }

  .reviews-summary {
    align-items: start;
    flex-direction: column;
  }

  .reviews-meta {
    justify-items: start;
    text-align: left;
  }

  .reviews-list {
    grid-template-columns: 1fr;
  }

  .news-carousel {
    grid-template-columns: 34px 1fr 34px;
    gap: 0.35rem;
  }

  .news-item {
    flex-basis: 100%;
    min-height: auto;
    transform: none;
    opacity: 1;
    padding: 0.9rem;
  }

  .news-latest-body {
    grid-template-columns: 1fr;
  }

  .news-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .news-image-primary {
    min-height: clamp(220px, 42svh, 360px);
    aspect-ratio: 16 / 9;
  }

  .news-image-primary img {
    object-fit: contain;
    object-position: center;
  }

  .news-nav {
    width: 34px;
    height: 34px;
  }
}

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

  .section {
    padding: 2rem 0;
    min-height: auto;
  }

  .header-inner {
    min-height: 52px;
  }

  .logo {
    width: 24px;
    height: 24px;
  }

  .logo-link {
    width: 36px;
    height: 36px;
  }

  .container {
    width: min(1240px, 100% - 1.2rem);
  }

  .header-section-title span {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .dropdown-menu {
    min-width: 188px;
  }

  .scroll-indicator,
  .to-top-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 430px) {
  body {
    padding-top: 4.1rem;
  }

  .site-header {
    position: fixed;
    top: 0.34rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 0.7rem);
    border: 1px solid #d8c9cc;
    border-radius: 16px;
    background: rgba(248, 243, 244, 0.96);
    box-shadow: 0 12px 28px rgba(22, 11, 13, 0.14);
  }

  .section,
  .site-footer {
    min-height: calc(100svh - 68px);
  }

  .header-inner {
    padding: 0.25rem 0.42rem;
  }

  .quick-nav-wrap {
    width: calc(100% - 0.7rem);
    padding: 0.08rem 0.35rem 0.28rem;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-owner {
    width: min(42vw, 190px);
    max-height: 240px;
  }
}
