:root {
  color-scheme: light;
  --ink: #171313;
  --muted: #6c5d55;
  --paper: #fffaf7;
  --soft: #f5ece7;
  --line: rgba(23, 19, 19, 0.12);
  --accent: #b51f2f;
  --gold: #b98a4a;
  --charcoal: #211d1b;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(181, 31, 47, 0.08), transparent 34vw),
    radial-gradient(circle at 84% 18%, rgba(185, 138, 74, 0.12), transparent 28vw),
    var(--paper);
  overflow-x: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #fffaf7;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.loader-mark img {
  width: min(260px, 72vw);
}

.loader-mark span {
  position: relative;
  width: 190px;
  height: 3px;
  overflow: hidden;
  background: rgba(181, 31, 47, 0.14);
}

.loader-mark span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: var(--accent);
  animation: loaderLine 1s ease-in-out infinite;
}

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

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

main {
  overflow: hidden;
}

.salon-marquee {
  overflow: hidden;
  color: #fff;
  background: var(--accent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.salon-marquee div {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 10px 0;
  animation: marqueeMove 28s linear infinite;
}

.salon-marquee span {
  position: relative;
  padding-left: 34px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.salon-marquee span::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 7px;
  height: 7px;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.menu-toggle {
  margin-top: 1%;
  position: fixed;
  top: 24px;
  right: auto;
  left: min(calc(100vw - 64px), 326px);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 42px;
  padding: 0;
  background: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: 0 10px 26px rgba(181, 31, 47, 0.22);
  cursor: pointer;
}

@media (min-width: 1401px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand img {
  width: 188px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #4f4540;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a,
.header-call {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.header-call {
  padding: 10px 15px;
  border: 1px solid var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-call:hover {
  color: #fff;
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: calc(100vh - 89px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
  align-items: end;
  gap: 26px;
  padding: clamp(74px, 10vw, 130px) clamp(18px, 5vw, 74px) clamp(42px, 6vw, 72px);
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(18, 13, 11, 0.88) 0%, rgba(18, 13, 11, 0.55) 42%, rgba(18, 13, 11, 0.2) 100%),
    url("WhatsApp Image 2026-05-15 at 11.23.46.jpeg");
  background-size: cover;
  background-position: center;
  isolation: isolate;
  animation: heroPan 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(0deg, rgba(18, 13, 11, 0.68), transparent);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 36%, transparent 52%);
  transform: translateX(-115%);
  animation: lightSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
  animation: fadeUp 700ms ease both;
}

.hero-panel {
  animation-delay: 150ms;
}

.kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4.8rem, 11vw, 10.5rem);
  font-weight: 700;
  letter-spacing: 0;
}

.hero-text {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(181, 31, 47, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-panel {
  padding: 24px;
  background: rgba(255, 250, 247, 0.92);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.badge {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 8px 13px;
  color: #fff;
  background: var(--accent);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

dl,
dd {
  margin: 0;
}

.hero-panel dl {
  display: grid;
  gap: 18px;
}

.hero-panel dt {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel dd {
  margin-top: 4px;
  color: #2d2926;
  font-weight: 700;
}

section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 74px);
}

section > * {
  animation: fadeUp 650ms ease both;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  background: #fff;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.promise-strip article {
  min-height: 220px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 250, 247, 0.88);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.promise-strip article:hover {
  z-index: 1;
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(31, 22, 18, 0.12);
}

.promise-strip span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.promise-strip h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.promise-strip p {
  margin: 0;
  color: var(--muted);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.stats-band article {
  min-height: 230px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(34, 29, 27, 0.94), rgba(20, 17, 16, 0.98));
}

.stat-value {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.stats-band strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 6.4vw, 6.8rem);
  line-height: 0.82;
  min-width: 2ch;
  font-variant-numeric: tabular-nums;
}

.stats-band strong.counted {
  animation: numberSettle 360ms ease;
}

.stats-band span {
  color: #d7a762;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stats-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.intro h2,
.section-heading h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 600;
}

.intro > p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.feature-grid article {
  display: grid;
  grid-template-rows: 360px auto;
  min-width: 0;
  background: var(--paper);
}

.feature-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.feature-grid article {
  overflow: hidden;
}

.feature-grid article:hover img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.045);
}

.feature-grid article div {
  padding: clamp(24px, 4vw, 42px);
}

.feature-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 600;
}

.feature-grid p:last-child {
  margin: 0;
  color: var(--muted);
}

.ritual {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(245, 236, 231, 0.9)),
    var(--soft);
}

.ritual h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.ritual-copy > p:not(.section-label) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.ritual-steps article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.ritual-steps article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(31, 22, 18, 0.1);
}

.ritual-steps span {
  color: var(--accent);
  font-weight: 800;
}

.ritual-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.ritual-media {
  position: relative;
  min-height: 560px;
}

.ritual-media img {
  position: absolute;
  width: 68%;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 28px 80px rgba(31, 22, 18, 0.18);
  transition: transform 300ms ease;
}

.ritual-media img:first-child {
  top: 0;
  left: 0;
  height: 420px;
}

.ritual-media img:last-child {
  right: 0;
  bottom: 0;
  height: 330px;
}

.ritual-media:hover img:first-child {
  transform: translateY(-8px) rotate(-1deg);
}

.ritual-media:hover img:last-child {
  transform: translateY(8px) rotate(1deg);
}

.mood-board {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  background: #fff;
}

.mood-heading {
  grid-column: 1 / -1;
}

.mood-board h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.mood-heading > p:last-child {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
}

.mood-tabs {
  display: grid;
  gap: 12px;
  align-content: start;
}

.mood-button {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.mood-button span {
  font-size: 1rem;
}

.mood-button small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.mood-button:hover,
.mood-button.active {
  color: #fff;
  background: var(--accent);
  transform: translateX(8px);
  box-shadow: 0 20px 42px rgba(181, 31, 47, 0.18);
}

.mood-button:hover small,
.mood-button.active small {
  color: rgba(255, 255, 255, 0.78);
}

.mood-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(260px, 0.48fr);
  min-height: 430px;
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(31, 22, 18, 0.1);
  overflow: hidden;
}

.mood-image {
  min-height: 430px;
  overflow: hidden;
  background: #171313;
}

.mood-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.mood-card div {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.mood-card h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.mood-card p {
  margin: 0;
  color: var(--muted);
}

.pricing {
  background: var(--soft);
}

.beauty {
  background: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.price-list article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.56);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.price-list article:hover {
  z-index: 1;
  background: #fff;
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(31, 22, 18, 0.1);
}

.beauty-list article {
  background: var(--paper);
}

.price-list h3 {
  margin: 0 0 22px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 600;
}

.price-list p {
  margin: auto 0 8px;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
}

.price-list span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.75fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 20, 18, 0.95), rgba(24, 20, 18, 0.74)),
    url("WhatsApp Image 2026-05-15 at 11.23.45.jpeg");
  background-size: cover;
  background-position: center;
}

.spotlight h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
}

.spotlight p:not(.section-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(180deg, #fffaf7, #f5ece7);
}

.video-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.video-copy p:not(.section-label) {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: #171313;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(31, 22, 18, 0.16);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  object-fit: cover;
}

.video-gallery {
  background: #fff;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.video-grid article {
  overflow: hidden;
  background: #171313;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(31, 22, 18, 0.12);
}

.video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery {
  background: var(--charcoal);
  color: #fff;
}

.gallery .section-label {
  color: #d7a762;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: clamp(150px, 16vw, 230px);
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
  cursor: zoom-in;
}

.gallery-grid img:hover {
  filter: brightness(1.06) saturate(1.08);
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.32);
}

.reviews {
  background:
    linear-gradient(180deg, #fffaf7, #f6ece6);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(31, 22, 18, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.review-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(31, 22, 18, 0.13);
}

.stars {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 1.1rem;
}

blockquote {
  margin: 22px 0;
  color: #2f2925;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 1.12;
}

.review-grid span {
  color: var(--accent);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 34px;
  align-items: center;
  background: var(--paper);
}

.contact-section h2 {
  margin-bottom: 16px;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 24px 60px rgba(181, 31, 47, 0.18);
}

.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-card .contact-address {
  color: #fff;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.22);
}

.contact-card a:last-child {
  display: inline-flex;
  justify-content: center;
  padding: 13px 16px;
  color: var(--ink);
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 74px) 24px;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(90deg, rgba(16, 13, 12, 0.96), rgba(28, 23, 21, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1fr);
  justify-content: center;
  justify-items: stretch;
  gap: 28px 72px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 12px;
  text-align: left;
}

.footer-brand img {
  width: min(210px, 62vw);
  padding: 12px 14px;
  background: #fff;
}

.footer-brand p,
.footer-details p,
.footer-details a,
.copyright {
  margin: 0;
}

.footer-brand p,
.copyright {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-details {
  display: grid;
  justify-items: end;
  gap: 5px;
  text-align: right;
}

.footer-details strong {
  color: #fff;
  font-size: 1.05rem;
}

.footer-details a {
  display: inline-flex;
  margin-top: 8px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.copyright {
  grid-column: 1 / -1;
  width: min(720px, 100%);
  justify-self: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 48px;
  padding: 0 18px;
  color: #fff;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 40px rgba(181, 31, 47, 0.34);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: callPulse 2.6s ease-in-out infinite;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 82px;
  z-index: 20;
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(23, 19, 19, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 58px);
  background: rgba(12, 10, 9, 0.88);
  backdrop-filter: blur(14px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border: 10px solid #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--accent);
  border: 0;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes fadeUp {
  from {
    opacity: 1;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lightSweep {
  0%, 52% {
    transform: translateX(-115%);
  }
  74%, 100% {
    transform: translateX(115%);
  }
}

@keyframes heroPan {
  from {
    background-position: 48% center;
  }
  to {
    background-position: 58% center;
  }
}

@keyframes callPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 18px 40px rgba(181, 31, 47, 0.34);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(181, 31, 47, 0.45);
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(260%);
  }
}

@keyframes numberSettle {
  0% {
    transform: scale(1);
  }
  48% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 1400px) {
  .site-header {
    grid-template-columns: 1fr auto;
    position: sticky;
    align-items: center;
    gap: 12px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-height: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    padding-bottom: 0;
    border-top: 1px solid transparent;
    transition: max-height 240ms ease, border-color 180ms ease;
  }

  .site-header.menu-open .main-nav {
    max-height: 320px;
    border-color: var(--line);
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    justify-self: end;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-call {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    text-align: center;
  }

  .site-header.menu-open .header-call {
    display: block;
  }

  .hero,
  .intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    grid-template-columns: minmax(240px, 0.72fr) 1fr;
    grid-template-rows: auto;
  }

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

  .promise-strip,
  .review-grid,
  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ritual,
  .spotlight,
  .mood-board,
  .video-showcase {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .mood-card {
    grid-template-columns: 1fr;
  }

  .mood-image,
  .mood-card img {
    min-height: 340px;
  }

  .ritual-media {
    min-height: 520px;
  }
}

@media (max-width: 1080px) {
  .hero,
  .intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 5px 14px;
  }

  .brand img {
    width: 136px;
  }

  .menu-toggle {
    left: min(calc(100vw - 52px), 338px);
    top: 6px;
    width: 36px;
    height: 32px;
    gap: 4px;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
    max-height: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    font-size: 0.78rem;
    transition: max-height 240ms ease, border-color 180ms ease;
    border-top: 1px solid transparent;
  }

  .site-header.menu-open .main-nav {
    max-height: 320px;
    border-color: var(--line);
  }

  .main-nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-call {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    text-align: center;
  }

  .site-header.menu-open .header-call {
    display: block;
  }

  .hero {
    min-height: 690px;
    grid-template-columns: 1fr;
    background-position: 62% center;
  }

  .hero h1 {
    max-width: 6.2ch;
    font-size: clamp(3.2rem, 15vw, 4.35rem);
    line-height: 0.94;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .hero-text {
    width: 100%;
    max-width: 34ch;
    font-size: 0.96rem;
  }

  .intro h2,
  .section-heading h2,
  .contact-section h2 {
    max-width: 11ch;
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-grid article {
    grid-template-columns: 1fr;
    grid-template-rows: 290px auto;
  }

  .section-heading {
    display: block;
  }

  .price-list,
  .beauty-list {
    grid-template-columns: 1fr;
  }

  .promise-strip,
  .review-grid,
  .ritual-steps,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .stats-band article {
    min-height: 150px;
  }

  .mood-button {
    min-height: 92px;
    transform: none;
  }

  .mood-button:hover,
  .mood-button.active {
    transform: translateY(-3px);
  }

  .mood-image,
  .mood-card img {
    min-height: 260px;
  }

  .price-list article {
    min-height: 180px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-grid img {
    height: 170px;
  }

  .video-frame video {
    aspect-ratio: 4 / 5;
    max-height: 520px;
  }

  .video-grid {
    gap: 12px;
  }

  .ritual-media {
    min-height: 0;
    display: grid;
    gap: 14px;
  }

  .ritual-media img,
  .ritual-media img:first-child,
  .ritual-media img:last-child {
    position: static;
    width: 100%;
    height: auto;
  }

  .floating-call {
    right: 14px;
    bottom: 14px;
    min-width: 104px;
    height: 44px;
  }

  .back-top {
    right: 14px;
    bottom: 68px;
    width: 44px;
    height: 44px;
  }

  .site-footer {
    padding-bottom: 76px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-details {
    justify-items: center;
    text-align: center;
  }
}

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