:root {
  --bg: #f7f5f4;
  --paper: #ffffff;
  --mist: #f1efed;
  --line: #dfd9d6;
  --text: #161313;
  --muted: #605958;
  --soft-muted: #7f7877;
  --pink: #f7c7e7;
  --pink-strong: #f149ad;
  --footer: #161616;
  --shadow: 0 16px 35px rgba(34, 24, 22, 0.08);
  --radius: 16px;
  --page-gutter: 24px;
  --shell: min(1180px, calc(100vw - (var(--page-gutter) * 2)));
  --shell-wide: var(--shell);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.shell--wide {
  width: var(--shell-wide);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 16px 0;
  transition: background-color 0.28s ease, box-shadow 0.28s ease, padding 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(21, 17, 16, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  padding: 12px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

.brand__logo {
  display: block;
  position: relative;
  top:-10px;
  width: clamp(132px, 16vw, 168px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position:relative;
  top:5px;
}

.site-nav a {
  position: relative;
  padding-bottom: 7px;
  opacity: 0.92;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.site-nav a:hover {
  color: var(--pink);
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 1.6px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 730px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media,
.hero__veil,
.offer-banner__media,
.offer-banner__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  background:
    linear-gradient(90deg, rgba(31, 24, 22, 0.45) 0%, rgba(31, 24, 22, 0.18) 42%, rgba(31, 24, 22, 0.48) 100%),
    url("assets/hero-salon.png") center/cover no-repeat;
  transform: scale(1.02);
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.1) 22%, rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 18% 42%, rgba(255, 233, 204, 0.14), transparent 30%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 118px;
  color: #fff;
}

.hero__eyebrow {
  margin: 0 0 4px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 4vw, 3.45rem);
  line-height: 0.95;
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 0.9;
}

.hero__accent {
  color: var(--pink);
}

.hero__subcopy {
  margin: 22px 0 0;
  font-size: 1.95rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button--light {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.button--ghost,
.button--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.08);
}

.button--ghost:hover,
.button--outline-light:hover {
  background: #fff;
  color: #111;
}

.button--underline {
  position: relative;
  padding: 0 0 8px;
  min-height: 0;
  background: transparent;
  color: #111;
  letter-spacing: 0.12em;
}

.button--underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 1.5px;
  background: #111;
}

.button--about {
  min-height: 56px;
  padding: 0 34px;
  border: 1.2px solid rgba(23, 16, 16, 0.55);
  background: transparent;
  color: #111;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  width: auto;
  max-width: none;
  white-space: nowrap;
}

.button--about:hover {
  background: rgba(255, 255, 255, 0.35);
}

.section {
  padding: 58px 0 70px;
}

.section--mist {
  background: var(--mist);
}

.section--warm {
  background: #f6f4f3;
}

.section--plain,
.section--gallery {
  background: #fff;
}

.section-heading {
  margin-bottom: 28px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 auto;
  max-width: 780px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  overflow: hidden;
  background: var(--paper);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.service-card img {
  height: 112px;
  object-fit: cover;
}

.service-card__body {
  padding: 14px 18px 18px;
  text-align: center;
}

.service-card h3 {
  margin: 0;
  font-size: 1.75rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  transition: color 0.24s ease;
}

.service-card p {
  margin: 8px 0 0;
  color: var(--soft-muted);
  font-size: 0.69rem;
  line-height: 1.55;
}

.service-card:hover,
.service-card:focus-within {
  box-shadow: inset 0 0 0 1.4px #111;
  transform: translateY(-2px);
}

.service-card:hover h3,
.service-card:focus-within h3 {
  color: var(--pink-strong);
}

.locations-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.56fr;
  gap: 20px;
}

.location-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ebe6e2;
  padding: 26px 26px 24px;
  box-shadow: 0 10px 26px rgba(26, 18, 16, 0.04);
}

.location-card__icon {
  margin-bottom: 18px;
  color: #beb4b0;
}

.location-card__icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.location-card__icon--mumbai {
  width: 45px;
}

.location-card__icon--branch {
  width: 58px;
}

.location-card h3,
.location-branch h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.location-card p,
.location-branch p {
  margin: 0 0 8px;
  max-width: 280px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.location-card--wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 14px 0 22px;
  color: #3a3433;
  font-size: 0.72rem;
  font-weight: 600;
}

.location-card a,
.location-branch a {
  font-size: 0.72rem;
  font-weight: 600;
}

.offer-banner {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.offer-banner__media {
  background:
    linear-gradient(90deg, rgba(33, 24, 21, 0.4) 0%, rgba(33, 24, 21, 0.22) 44%, rgba(33, 24, 21, 0.42) 100%),
    url("assets/offer-face.png") center/cover no-repeat;
  transform: scale(1.04);
}

.offer-banner__veil {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.2));
}

.offer-banner__content {
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.offer-banner__eyebrow {
  margin: 0 0 10px;
  font-size: 0.93rem;
  letter-spacing: 0.26em;
}

.offer-banner h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
  font-weight: 700;
}

.offer-banner__text {
  margin: 12px 0 0;
  font-size: 1.5rem;
  font-weight: 400;
}

.offer-banner__note {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 1;
  width: var(--shell);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-align: right;
  transform: translateX(-50%);
}

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

.review-card {
  background: #f7f6f5;
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
}

.review-card p {
  margin: 0;
  color: #4f4948;
  font-size: 0.68rem;
  line-height: 1.7;
}

.review-card__stars {
  margin-top: 16px;
  color: #f7902c;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}

.review-card h3 {
  margin: 8px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.gallery-marquee {
  display: grid;
  gap: 16px;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.gallery-row {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: gallery-scroll-left 36s linear infinite;
  will-change: transform;
}

.gallery-row--right .gallery-track {
  animation-name: gallery-scroll-right;
}

.gallery-slide {
  flex: 0 0 clamp(180px, 16vw, 238px);
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #efe9e6;
  box-shadow: 0 10px 24px rgba(36, 24, 22, 0.06);
}

.gallery-slide img {
  width: 100%;
  height: clamp(230px, 24vw, 320px);
  object-fit: cover;
  transition: transform 0.32s ease;
}

.gallery-slide:hover img {
  transform: scale(1.03);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 470px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(31, 23, 21, 0.08);
}

.about-section__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--pink);
}

.about-section__inner {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: clamp(44px, 5vw, 76px);
}

.about-section__eyebrow {
  margin: 0 0 12px;
  font-size: 0.84rem;
}

.about-section__copy h2 {
  margin: 0 0 18px;
  font-size: 2.05rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.about-section__copy p {
  margin: 0 0 14px;
  font-size: 0.72rem;
  line-height: 1.75;
}

.about-section__copy .button {
  margin-top: 28px;
  align-self: flex-start;
}

.about-section__image img {
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.section--about {
  background: var(--bg);
}

.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.92);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 0.7fr;
  gap: 34px;
  padding: 38px 0 28px;
}

.brand--footer .brand__logo {
  width: min(184px, 100%);
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: inline-flex;
  width: 24px;
  height: 24px;
}

.socials svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.whatsapp-sticky {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 32px rgba(12, 84, 41, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.whatsapp-sticky:hover,
.whatsapp-sticky:focus-visible {
  background: #1ebe5b;
  box-shadow: 0 20px 36px rgba(12, 84, 41, 0.34);
  transform: translateY(-2px);
}

.whatsapp-sticky svg {
  width: 38px;
  height: 38px;
  overflow: visible;
}

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

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

@keyframes gallery-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes gallery-scroll-right {
  from {
    transform: translateX(calc(-50% - 8px));
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 1080px) {
  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .locations-layout,
  .about-section,
  .footer-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  :root {
    --page-gutter: 14px;
    --shell: min(100vw - (var(--page-gutter) * 2), 100%);
    --shell-wide: var(--shell);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(20, 17, 16, 0.97);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-nav a {
    padding-bottom: 2px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 680px;
  }

  .hero__content {
    padding-top: 136px;
  }

  .hero__eyebrow {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero__subcopy {
    font-size: 1.4rem;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .offer-banner__content {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-slide {
    flex-basis: 200px;
  }

  .gallery-slide img {
    height: 270px;
  }

  .about-section__inner {
    width: 100%;
    padding: 34px 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 0;
  }

  .brand__logo {
    width: 138px;
  }

  .hero {
    min-height: 610px;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero__subcopy {
    margin-top: 16px;
    font-size: 1.12rem;
  }

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

  .button {
    width: 100%;
    max-width: 240px;
  }

  .button--about {
    min-height: 54px;
    font-size: 0.74rem;
  }

  .section {
    padding: 42px 0 54px;
  }

  .section-heading h2 {
    max-width: 320px;
    font-size: 1.95rem;
    line-height: 1.08;
  }

  .service-card img {
    height: 94px;
  }

  .gallery-marquee {
    gap: 12px;
  }

  .gallery-track {
    gap: 12px;
    animation-duration: 26s;
  }

  .gallery-slide {
    flex-basis: 158px;
  }

  .gallery-slide img {
    height: 222px;
  }

  .offer-banner {
    min-height: 420px;
  }

  .offer-banner__note {
    left: 50%;
    width: var(--shell);
    text-align: right;
    transform: translateX(-50%);
  }

  .footer-shell {
    gap: 24px;
    padding: 32px 0 24px;
  }

  .whatsapp-sticky {
    right: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
    border-width: 3px;
  }

  .whatsapp-sticky svg {
    width: 34px;
    height: 34px;
  }

  .about-section__copy h2 {
    max-width: 260px;
    font-size: 1.7rem;
    line-height: 1.08;
  }

  .about-section__inner {
    padding: 32px 18px;
  }
}
