/* =======================================
---------------- Fonts -------------------
======================================= */

/* Autor Font - Black */
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-BlackIt.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

/* Autor Font - ExtraBold */
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-ExtraBoldIt.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}

/* Autor Font - Bold */
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-BoldIt.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* Autor Font - Medium */
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-MediumIt.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

/* Autor Font - Regular */
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-RegularIt.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* Autor Font - Light */
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-LightIt.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

/* Autor Font - Thin */
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Autor';
  src: url('https://staticimg.zoya.in/Banners/Lhasa/assets/fonts/Autor-ThinIt.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

@keyframes infiniteRotation {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
:root {
  /* =======================================
  ------------- Font Families --------------
  ======================================= */
  --font-primary: 'Autor', sans-serif;
  /* =======================================
  -------------- Brand Colors --------------
  ======================================= */
  --brand-beige: #e2dacb;
  --brand-beige-rgb: 226, 218, 203; /* for rgba() uses */
  --color-soft-beige: #f6f4ee;
  --color-soft-beige-rgb: 246, 244, 238; /* for rgba() uses */
  --color-ivory-beige: #efeae3;
  --color-ivory-beige-rgb: 239, 234, 227; /* for rgba() uses */
  --color-tag: #853f33;
  --color-headline: #181819;
  --color-highlight: #843a3a;
  --color-light-gray: #f6f6f6;
  --color-gray-10: rgba(0, 0, 0, 0.1); /* 10% black */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255; /* for rgba() uses */
  --color-charcoal: #0b0b0b;
  --color-gray-90: rgba(51, 51, 51, 0.9);
  --section-gap: 120px;
  --color-gray-20: rgba(99, 77, 78, 0.2);
  --color-medium-gray: #f1ede6;
  --color-brown: #312627;
  --color-warm-beige: #ece7dc;
  --color-warm-beige-rgb: 236, 231, 220;
  --color-beige-bg: #efeae3;
  --color-beige-light: #f6f4ee;
  --color-subtle-gray: #f8f8f6;
  --color-black-2: #4f4f4f;
  --color-brown: #6b6767;
  --color-light-brown: #aa8a7b;
}

/* =======================================
------------- Global Styles --------------
======================================= */

[data-loading-css] {
  visibility: visible !important;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* For Safari mobile support */
body {
  -webkit-overflow-scrolling: touch;
  font-family: var(--font-primary);
  font-feature-settings: 'liga' off;
}

.primary-font-family {
  font-family: var(--font-primary) !important;
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

svg rect {
  will-change: transform;
}

#maincontent.overflow-hidden {
  overflow: visible !important; /* Fix for video is not sticky due to overflow hidden in main content */
}

/* =======================================
----------- Typography Utilities ---------
======================================= */

.fs-text-link {
  font-size: 12px;
}

.fs-text-label {
  font-size: clamp(11px, 1vw, 12px);
}

.fs-text-tag {
  font-size: clamp(11px, 1.2vw, 14px);
}

.fs-text-body-xs {
  font-size: clamp(16px, 1.6vw, 24px);
}

.fs-text-display-md {
  font-size: clamp(28px, 4.5vw, 40px);
}

.fs-text-body-small {
  font-size: clamp(13px, 1.2vw, 16px);
}

.fs-text-display-md {
  font-size: clamp(20px, 4.5vw, 40px);
}

.fs-text-display {
  font-size: clamp(24px, 5vw, 48px);
}

.fs-text-headline-medium {
  font-size: clamp(32px, 5.2vw, 60px);
}

.fs-text-headline-xl {
  font-size: clamp(38px, 6vw, 64px);
}

.fs-text-headline-large {
  font-size: clamp(42px, 6vw, 86.868px);
}

.fs-text-input {
  font-size: clamp(14px, 3.8vw, 16px);
}

/* =======================================
----------- Max Width Utilities ----------
======================================= */

.max-w-50percent {
  max-width: clamp(160px, 50%, 747px);
}

.max-w-734 {
  max-width: 734px !important; /* 51% of 1440px */
}

.max-w-1200 {
  max-width: 1200px !important;
}

.max-w-1440 {
  max-width: 1440px !important;
}

/* =======================================
----------- Letter Spacing Utilities -----
======================================= */

.ls-tighter {
  letter-spacing: -0.32px;
}

.ls-tight {
  letter-spacing: -1.92px;
}

.ls-tight-md {
  letter-spacing: -1.6px;
}

.ls-tighter-xl {
  letter-spacing: -2.56px;
}

.ls-tighter-xxl {
  letter-spacing: -3.475px;
}

.ls-normal {
  letter-spacing: 0;
}

.ls-medium {
  letter-spacing: 1.32px;
}

.ls-wide {
  letter-spacing: 1.4px;
}

.ls-wider {
  letter-spacing: 1.44px;
}

.ls-widest {
  letter-spacing: 2px;
}

/* =======================================
-------------- Line Height ---------------
======================================= */

.lh-normal {
  line-height: normal;
}

.lh-96percent {
  line-height: 96%;
}

.lh-110percent {
  line-height: 110%;
}

.lh-116percent {
  line-height: 116%;
}

.lh-120percent {
  line-height: 120%;
}

.lh-130percent {
  line-height: 130%;
}

.lh-140percent {
  line-height: 140%;
}

.lh-160percent {
  line-height: 160%;
}

/* =======================================
--------------- Utilities ----------------
======================================= */

.top-0 {
  top: 0;
}

.start-0 {
  left: 0;
}

.end-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.w-70 {
  width: 70%;
}

.object-fit-cover {
  object-fit: cover;
}

.object-position-center {
  object-position: center;
}

.opacity-25 {
  opacity: 0.25;
}

.cursor-pointer {
  cursor: pointer;
}

.gap-42px {
  gap: 42px;
}

.force-hide {
  display: none !important;
}

.pointer-events-none {
  pointer-events: none !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.overflow-y-visible {
  overflow-y: visible;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.pt-242 {
  padding-top: 242px !important;
}

.px-22 {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

.mt-242 {
  margin-top: -242px !important;
}

.text-no-wrap {
  white-space: nowrap;
}

.bg-blur {
  position: fixed;
  width: 100vw !important;
  height: 100vh;
  z-index: 2;
  top: 0;
  left: 0;

  background-color: rgba(44, 44, 44, 0.4);
  backdrop-filter: blur(12px);
}

/* =======================================
------------- Font Families --------------
======================================= */

.font-sans {
  font-family: var(--font-sans);
}

.font-serif {
  font-family: var(--font-serif);
}

/* =======================================
------------- Font Weights ---------------
======================================= */

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

/* =======================================
---------- Theme Color Utilities ---------
======================================= */

/* Text Colors */

.text-brand-tag {
  color: var(--color-tag);
}

.text-brand-headline {
  color: var(--brand-headline);
}

.text-brand-highlight {
  color: var(--brand-highlight);
}

.text-highlight {
  color: var(--color-highlight);
}

.text-heading {
  color: var(--color-headline);
}

.text-charcoal {
  color: var(--color-charcoal) !important;
}

.text-gray-90 {
  color: var(--color-gray-90);
}

.text-color-gray-10 {
  color: var(--color-gray-10) !important;
}

.text-black-2 {
  color: var(--color-black-2) !important;
}

.text-brown {
  color: var(--color-brown);
}

/* Background */

.bg-light-gray {
  background-color: var(--color-light-gray) !important;
}

.bg-warm-beige {
  background-color: var(--color-warm-beige) !important;
}

.bg-black {
  background-color: var(--color-black) !important;
}

.bg-soft-beige {
  background-color: var(--color-soft-beige) !important;
}

.bg-ivory-beige {
  background-color: var(--color-ivory-beige) !important;
}
/* =======================================
----------- Border Color ------------
======================================= */

.border-color-black {
  border-color: var(--color-black) !important;
}

/* =======================================
----------- Z-Index Utilities ------------
======================================= */

.z-index-0 {
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

/* =======================================
------------ Border Utilities ------------
======================================= */

.border-0 {
  border-width: 0 !important;
}

.border-1 {
  border-width: 1px !important;
  border-style: solid !important;
}

.border-light-gray {
  border-color: var(--color-gray-10) !important;
}

/* =======================================
--------------- Keyframes ----------------
======================================= */
[data-infinite-rotation] {
  animation: infiniteRotation 30s linear infinite;
}

.container-no-spacing {
  padding: 0 !important;
}

.container-no-spacing > .row {
  margin: 0 !important;
}

.container-no-spacing > .row > [class*='col-'] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* =======================================
------------ Hyperlink ------------
======================================= */

.product-link {
  text-decoration: underline;
}

.product-link + svg {
  transform: rotate(360deg) !important;
  margin-right: 4px;
  margin-bottom: 1px;
}

/* =======================================
------------ Fade up transition ------------
======================================= */

[data-fade-up] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

[data-fade-up].fade-up-in {
  opacity: 1;
  transform: translateY(0);
}

/* =======================================
---| Section Specific Style Started |-----
======================================= */

.hero-section-audio {
  position: absolute;
  left: -22px;
  bottom: 100px;
  cursor: pointer;
  display: none;
}

.bg-hero-custom {
  background: linear-gradient(0deg, var(--brand-beige) 0%, var(--brand-beige) 100%);
}
/* =======================================
------- Moodboard Bottom Section ---------
========================================== */

.moodboard-btm-section {
  z-index: 10;
  position: relative;
  background-color: var(--color-beige-bg);
  gap: 80px;
}

.moodboard-btm__text-content p {
  max-width: 38%;
}

.moodboard-btm__image-container-top {
  max-height: 310px;
}

.moodboard-btm__image1 {
  position: relative;
  top: 51px;
  left: 120px;
}

.moodboard-btm__image2 {
  position: relative;
  bottom: -29px;
  left: 152px;
}

.moodboard-btm__image3 {
  position: relative;
  mix-blend-mode: darken;
  bottom: 82px;
  left: 151px;
}

.moodboard-btm__image4 {
  position: relative;
  left: 100px;
  bottom: 149px;
  z-index: 10;
  background-color: var(--color-beige-bg);
}
.moodboard-btm__image5 {
  position: relative;
  left: 114px;
  transform: rotate(90deg);
  top: -60px;
}

.moodboard-btm__image6 {
  position: relative;
  left: -80px !important;
  top: 11px;
  mix-blend-mode: darken;
}

.moodboard-btm__image8 {
  background-color: var(--color-beige-bg);
  transform: rotateY(180deg);
}

.moodboard-btm__image8 img {
  mix-blend-mode: multiply;
}

.moodboard-btm__image9 {
  background-color: #efeae3;
}

.moodboard-btm__image9 p {
  width: 90%;
}

.moodboard-btm__image-container-bottom {
  position: relative;
}

.moodboard-btm__overlap-image {
  padding: 28px;
  background-color: var(--color-beige-light);
  width: 570px;
  height: 382px;
  gap: 28px;
  position: absolute;
  top: 131px;
  right: -20px;
}

/* =======================================
------------- Gallery Section ------------
======================================= */
.section-gap:not(.section-gap--no-top) {
  padding-top: var(--section-gap);
}
.section-gap:not(.section-gap--no-bottom) {
  padding-bottom: var(--section-gap);
}
.section-gallery-layout {
  margin-top: -100px;
  padding-top: 100px;
  margin-bottom: 120px;
  padding-bottom: 60px;
}

.section-gallery-layout__4th-img {
  margin-top: 332px;
}

.push-down-section-gallery-layout {
  top: 260px;
}

.image-float-top-right {
  right: 15px;
}

/* =======================================
------------ Product Sections ------------
======================================= */

.product-section-bg {
  background: linear-gradient(0deg, var(--brand-beige) 0%, var(--brand-beige) 100%);
}
.product-section__svg-wrapper {
  right: 80px;
}
.product-section__svg-wrapper svg {
  width: 100%;
  height: 100%;
}
.product-section-starter {
  will-change: transform;
}
.product-section-3__heading--gradient {
  background: linear-gradient(
    to bottom,
    rgba(var(--color-warm-beige-rgb), 1),
    rgba(var(--color-warm-beige-rgb), 0.9),
    rgba(var(--color-warm-beige-rgb), 0.8),
    rgba(var(--color-warm-beige-rgb), 0)
  );
}
.product-section-flex {
  padding-top: 64px;
  height: 780px;
}

.product-section-left {
  flex-basis: 60%;
  position: relative;
  height: 100%;
}

.product-section-right {
  flex-basis: 37%;
  height: 780px;
}

.product-section-gallery-4 {
  width: 243px;
  height: 188px;
  gap: 40px;
  position: relative;
  left: 113px;
  top: 64px;
}
.product-section-gallery-4 img:first-of-type {
  height: 72px;
  width: 190px;
}
.product-section-gallery-4 p {
  color: rgba(51, 51, 51, 0.9);
  font-size: 16px;
  font-weight: 300;
  line-height: 116%;
}
.product-section-gallery-2 {
  position: absolute;
  width: 862px;
  height: 787px;
  left: 270px;
  bottom: -100px;
  scale: 0.9;
  aspect-ratio: 598/477;
}
.product-section-gallery-5 {
  position: absolute;
  mix-blend-mode: multiply;
  width: 423px;
  height: 431px;
  bottom: 0px;
  left: 55px;
}

.text-petal-crown {
  font-weight: 300;
  line-height: 140%; /* 16.8px */
  letter-spacing: 1.44px;
  color: var(--color-charcoal);
  position: absolute;
  left: 330px;
  top: 300px;
  max-width: 140px;
  text-align: right;
}

/* =======================================
------------- Video Section --------------
======================================= */

.video-section {
  padding-bottom: 84px;
}

.video-section__content {
  gap: 42px;
}

.video-section__play-icon {
  width: 120px;
  height: 120px;
  background-color: rgba(var(--color-white-rgb), 0.31);
  backdrop-filter: blur(2.25px);
}
.video-section__play-icon img {
  margin-right: -2px;
}
.video-section__content-text {
  max-width: 528px;
}

/* =======================================
--- Section: Quote & Artist Text Only ----
======================================= */
.section-quote {
  padding: 120px 0;
}
/* .section-quote__right-img-container {
	 background: linear-gradient(90deg, #f8c6ce 0%, #99d5ba 45.47%, #fdcbd7 100%);
} */

.section-quote-artist {
  height: 440px;
}
.video-wrapper {
  position: relative;
  height: 200vh; /* Enough space to scroll */
}
.video-section-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 0;
}

/* =======================================
----------- Invitation Section -----------
======================================= */

.invitation-section {
  position: relative;
  z-index: 10;
  padding-left: 180px;
  height: 100vh;
  max-height: 908px;
}
.invitation-text-wrapper {
  flex-basis: 35%;
  top: 100px;
  position: relative;
}
.invitation-text-wrapper h5 {
  color: var(--color-tag);
  line-height: 140%;
  letter-spacing: 1.4px;
  z-index: 100;
}
.invitation-text-wrapper h3 {
  font-size: 68px;
  line-height: 100%;
  letter-spacing: -2.72px;
  font-weight: 200;
}
.invitation-text-wrapper p {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.32px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 300;
}
.invitation-text-wrapper a {
  padding: 20px 36px;
  border-radius: 60px;
  border: 1px solid var(--color-gray-20);
  color: var(--color-tag);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 1.4px;
}
.invitation-section-img {
  position: absolute;
  right: -50px;
  z-index: -1;
  width: 926px;
  height: 904px;
  object-fit: contain;
  scale: 0.9;
  top: -120px;
}
.invitation-section-branch-img {
  position: absolute;
  left: 40px;
  top: -200px;
  z-index: 1;
  width: 180px;
  height: 270px;
  object-fit: cover;
  transform: rotateY(180deg) rotateZ(-80deg);
}

/* =======================================
------ Book an appointment Section -------
======================================= */

#booking-modal {
  top: 0;
  left: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 101;
}

#booking-modal .booking-form {
  top: -100vh;
  transform: translateY(0%);
  transition: all 600ms ease-in-out;
}

#booking-modal[data-modal-open] .booking-form {
  transform: translateY(100vh);
}

#booking-modal .bg-blur {
  opacity: 0;
  transition: all 600ms ease-in-out;
}

#booking-modal[data-modal-open] .bg-blur {
  opacity: 1;
}

.booking-form {
  position: relative;
  background-color: var(--color-subtle-gray);
  padding: 60px 48px 52px;
  max-width: 500px;
  max-height: 650px;
  z-index: 10;
}

.booking-form::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 10px;
  /* border thickness */
  background: conic-gradient(
    from 332deg,
    white 18deg,
    #f8c6ce 47deg,
    #99d5ba 84deg,
    #f8c6ce 205deg,
    #99d5ba 217deg,
    #fdcbd7 315deg,
    white 360deg
  );
  /* Top Left */
  /* Top Right */
  /* Middle Right */
  /* Bottom Right */
  /* Bottom Left */
  /* Middle Left */
  /* back to Top Left */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}
.booking-form__close-btn {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 100;
  cursor: pointer;
}

.booking-form__branch-img {
  position: relative;
  margin-right: auto;
  margin-left: 14px;
  margin-top: -75px;
  z-index: 1;
  width: 141px;
  height: 211px;
  aspect-ratio: 141/211.55;
  object-fit: cover;
  transform: rotateY(180deg) rotateZ(-80deg);
  z-index: 9;
}

.booking-form__text-content h3 {
  font-size: 45px;
  line-height: 88%;
  margin-bottom: 32px;
}

.booking-form__inputs input {
  border-radius: 0px;
  border: 1px solid var(--color-light-brown);
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--color-subtle-gray);
}

.booking-form__inputs input:focus-visible {
  outline: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition:
    background-color 0s calc(infinity * 1s),
    color 0s calc(infinity * 1s) !important;
}

.booking-form__inputs input:first-of-type {
  border-bottom: 0px !important;
}

.booking-form__checkbox-label .peer:checked + .checkmark-box {
  background: var(--color-tag);
  color: white;
}

.checkmark-box {
  min-width: 20px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  background-color: #efefef;
  backdrop-filter: blur(3.2979px);
  transition: all 0.3s ease;
}
.booking-form__submit-btn {
  padding: 22px 55px;
  border: none;
  background-color: var(--color-tag);
  color: white;
}

.booking-form__submit-btn:focus {
  outline: none !important;
}

.booking-form__submit-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* =======================================
--- House of TATA Section ----
======================================= */
.house-of-tata-section {
  background-color: var(--color-medium-gray);
  z-index: 10;
  position: relative;
  gap: 150px;
  height: 700px;
}
.house-of-tata-section p {
  color: var(--color-brown);
  font-size: 16px;
  font-style: normal;
  line-height: 120%;
  letter-spacing: 0.64px;
  opacity: 0.4;
}
.house-of-tata-text-wrapper {
  gap: 10px;
}
.house-of-tata-text-wrapper p {
  color: #333;
  font-size: 16px;
  font-style: normal;
  line-height: 154%;
  opacity: 0.7;
  text-transform: none;
}
.house-of-tata-bg-vector {
  position: absolute;
  inset: 0;
  margin: auto;
  top: 20%;
  aspect-ratio: 1/1;
}
.house-of-tata-bg-vector img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: infiniteRotation 30s linear infinite;
}

/* =======================================
--- Style conflict - Override class ----
======================================= */

.m-menu-footer.m-sub-category-hpt-0.mt-4 {
  margin-top: 0; /* Or remove mt-4 class from login link*/
}
