/* =========================================================
   BHARATHI FURNITURE - CLEAN MASTER STYLESHEET
   Brown + Cream Theme
   Consolidated from the supplied stylesheet.
   Duplicate selectors and repeated media blocks were merged.
========================================================= */
:root {
  --brown-dark: #2b1b14;
  --brown: #5a3c2b;
  --brown-light: #8a674e;
  --beige: #d7c0a7;
  --cream: #f7f2ea;
  --cream-dark: #eee5da;
  --white: #ffffff;
  --text: #28221e;
  --muted: #70665f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

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

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

.header {
  width: 100%;
  height: 90px;
  padding: 0 6%;
  position: fixed;
    background: rgba(58, 33, 23, 0.58);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--brown-dark);
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.logo {
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  font-weight: 700;
}

.logo span {
  font-weight: 500;
  opacity: 0.8;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.nav a:hover {
  color: var(--white);
}

.header-btn {
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: white;
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: 0.3s;
}

.header-btn:hover {
  background: white;
  color: var(--brown-dark);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 7% 80px;
  overflow: hidden;
  background: #2b1b14;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      90deg,

      rgba(29, 17, 11, 0.94) 0%,

      rgba(46, 27, 18, 0.82) 32%,

      rgba(45, 27, 19, 0.5) 62%,

      rgba(26, 16, 11, 0.18) 100%
    ),

    linear-gradient(
      0deg,
      rgba(24, 14, 9, 0.55),
      transparent 45%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  color: #ffffff;
  animation: heroContent 1.2s ease forwards;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #d8c3a5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.hero .eyebrow::before {
  content: "";
  width: 45px;
  height: 1px;
  background: #d8c3a5;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 7.5vw, 108px);
  font-weight: 600;
  line-height: 0.89;
  letter-spacing: -0.025em;
}

.hero h1 em {
  display: block;
  margin-top: 10px;
  color: #d8c3a5;
  font-weight: 500;
  font-style: italic;
}

.hero-content > p {
  max-width: 570px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 15px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.hero .btn-primary {
  position: relative;
  overflow: hidden;
  padding: 17px 29px;
  background: #6f4e37;
  color: #ffffff;
  border: 1px solid #6f4e37;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.35s ease,
    background 0.35s ease;
}

.hero .btn-primary:hover {
  background: #ffffff;
  color: #3b2418;
  border-color: #ffffff;
  transform: translateY(-4px);
}

.hero .btn-outline {
  padding: 17px 29px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.35s ease;
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: #ffffff;
  color: #3b2418;
  transform: translateY(-4px);
}

.hero-label {
  position: absolute;
  right: 6%;
  bottom: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}

.hero-label span {
  font-family: "Cormorant Garamond", serif;
  color: #d8c3a5;
  font-size: 28px;
  font-weight: 600;
}

.hero-label > div {
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-label p {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 2.5%;
  bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-scroll span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 8px;
  letter-spacing: 0.25em;
}

.scroll-line {
  width: 1px;
  height: 55px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-line::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 25px;
  background: #ffffff;
  animation: scrollMove 1.8s infinite;
}

@keyframes heroContent {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollMove {
  0% {
    top: -30px;
  }

  100% {
    top: 60px;
  }
}

.section {
  padding: 110px 7%;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 55px;
}

.section-heading h2, .intro h2, .about h2, .signature h2, .why-heading h2, .contact-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 0.98;
  font-weight: 600;
}

.section-heading p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.8;
}

.section-label {
  display: inline-block;
  margin-bottom: 18px;
}

.light {
  color: var(--beige);
}

.intro h2 span, .about h2 span, .signature h2 span, .why-heading h2 span, .contact-cta h2 span {
  display: block;
  color: var(--brown-light);
  font-style: italic;
}

.category-card {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.category-large {
  height: 600px;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      transparent 35%,
      rgba(32, 20, 14, 0.82)
    );
}

.category-card img {
  transition: transform 0.8s ease;
}

.category-card:hover img {
  transform: scale(1.07);
}

.category-content {
  position: absolute;
  z-index: 3;
  left: 30px;
  right: 30px;
  bottom: 30px;
  color: white;
}

.category-content > span {
  font-size: 11px;
  opacity: 0.65;
}

.category-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  margin: 8px 0 15px;
}

.category-content a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

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

.about-image-wrap {
  position: relative;
  min-height: 650px;
}

.about-image-main {
  width: 98%;
  height: 580px;
}

.about-small-image {
  position: absolute;
  width: 45%;
  height: 270px;
  right: 0;
  bottom: 0;
  border: 10px solid var(--cream);
}

.experience-box {
  position: absolute;
  right: 0;
  top: 50px;
  background: var(--brown);
  color: white;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.experience-box strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 45px;
}

.experience-box span {
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.about-content p {
  color: var(--muted);
  line-height: 1.9;
  margin: 21px 0;
}

.about-points {
  border-top: 1px solid #d8cfc5;
  border-bottom: 1px solid #d8cfc5;
  margin: 35px 0;
}

.about-points div {
  padding: 17px 0;
  display: flex;
  gap: 22px;
  border-bottom: 1px solid #ddd3c9;
}

.about-points div:last-child {
  border: 0;
}

.about-points strong {
  font-size: 11px;
  color: var(--brown-light);
}

.about-points span {
  font-size: 14px;
  font-weight: 600;
}

.bharathi-experience {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 900px;
  background: #efe3d5;
  overflow: hidden;
}

.experience-editorial-image {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: #342117;
}

.experience-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}

.bharathi-experience:hover .experience-editorial-image img {
  transform: scale(1.035);
}

.experience-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(42, 25, 16, 0.05) 25%,
      rgba(42, 25, 16, 0.78) 100%
    ),
    linear-gradient(
      90deg,
      rgba(42, 25, 16, 0.12),
      transparent 55%
    );
}

.experience-image-caption {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 48px;
  z-index: 2;
  color: #ffffff;
}

.experience-image-caption span {
  display: inline-block;
  margin-bottom: 13px;
  color: #e5cdb4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.experience-image-caption strong {
  display: block;
  max-width: 430px;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.05;
}

.experience-floating-seal {
  position: absolute;
  top: 55px;
  right: 35px;
  z-index: 3;
  width: 145px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 7px solid
    rgba(239, 227, 213, 0.88);
  border-radius: 50%;
  background: #3b261c;
  color: #ffffff;
  box-shadow: 0 20px 45px
    rgba(43, 27, 20, 0.22);
  animation: experienceSealFloat
    4s
    ease-in-out
    infinite;
}

.experience-floating-seal strong {
  color: #d9b894;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 42px;
  line-height: 1;
}

.experience-floating-seal span {
  color: rgba(
      255,
      255,
      255,
      0.78
    );
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes experienceSealFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.experience-editorial-content {
  position: relative;
  padding: 100px
    clamp(
      45px,
      7vw,
      115px
    );
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(
      circle at 100% 0%,
      rgba(127, 83, 52, 0.13),
      transparent 30%
    ),
    #f7efe5;
}

.experience-editorial-content::after {
  content: "HOME";
  position: absolute;
  right: -8px;
  bottom: -35px;
  color: rgba(
      75,
      47,
      29,
      0.035
    );
  font-family: "Cormorant Garamond",
    serif;
  font-size: clamp(
      110px,
      14vw,
      220px
    );
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.experience-heading {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-bottom: 55px;
}

.experience-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #81583e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.experience-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #81583e;
}

.experience-heading h2 {
  margin: 0;
  max-width: 700px;
  color: #302018;
  font-family: "Cormorant Garamond",
    serif;
  font-size: clamp(
      52px,
      5.6vw,
      80px
    );
  font-weight: 600;
  line-height: 0.95;
}

.experience-heading h2 em {
  display: block;
  margin-top: 7px;
  color: #8b6044;
  font-weight: 500;
  font-style: italic;
}

.experience-heading p {
  max-width: 640px;
  margin-top: 27px;
  color: #74665d;
  font-size: 14px;
  line-height: 1.9;
}

.experience-steps {
  position: relative;
  z-index: 2;
  border-top: 1px solid
    #d6c4b3;
}

.experience-step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid
    #d6c4b3;
  transition: padding-left 0.4s ease,
    background 0.4s ease;
}

.experience-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #79523a;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.experience-step:hover {
  padding-left: 18px;
  background: rgba(
      139,
      96,
      68,
      0.04
    );
}

.experience-step:hover::before {
  transform: scaleY(1);
}

.experience-step-number {
  color: #a78368;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 32px;
  line-height: 1;
}

.experience-step-label {
  display: block;
  margin-bottom: 8px;
  color: #91694d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.experience-step h3 {
  margin: 0 0 9px;
  color: #3a281f;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 28px;
  font-weight: 600;
}

.experience-step p {
  max-width: 590px;
  margin: 0;
  color: #76685f;
  font-size: 12px;
  line-height: 1.8;
}

.experience-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 25px;
  align-items: center;
  margin-top: 42px;
}

.experience-mini-stat {
  padding-right: 22px;
  border-right: 1px solid
    #d4c1af;
}

.experience-mini-stat strong {
  display: block;
  color: #5f402f;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 37px;
  font-weight: 600;
  line-height: 1;
}

.experience-mini-stat span {
  display: block;
  margin-top: 6px;
  color: #776960;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 185px;
  padding: 15px 20px;
  background: #5f402f;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.35s ease,
    transform 0.35s ease;
}

.experience-cta span {
  font-size: 17px;
  transition: transform 0.35s ease;
}

.experience-cta:hover {
  background: #352219;
  transform: translateY(-4px);
}

.experience-cta:hover span {
  transform: translateX(6px);
}

.experience-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.85s ease,
    transform 0.85s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}

.experience-reveal.experience-show {
  opacity: 1;
  transform: translateY(0);
}

.experience-step:nth-child(2) {
  transition-delay: 0.1s;
}

.experience-step:nth-child(3) {
  transition-delay: 0.2s;
}







.signature {
  min-height: 500px;
  height: 700px;
  background: var(--brown-dark);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.signature-content {
  padding: 100px 8vw;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signature h2 {
  margin: 10px 0 25px;
}

.signature h2 span {
  color: var(--beige);
}

.signature p {
  max-width: 430px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.67);
  margin-bottom: 35px;
}

.signature-image {
  min-height: 700px;
}

.btn-cream {
  width: fit-content;
  background: var(--cream);
  color: var(--brown-dark);
}

.btn-cream:hover {
  background: var(--beige);
  transform: translateY(-3px);
}

.products {
  background: white;
}

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

.product-image {
  position: relative;
  width: 100%;
  height: 460px;

  overflow: hidden;
  background: #f4eee7;

  display: flex;
  align-items: center;
  justify-content: center;
}


/* SAME AREA FOR ALL PRODUCT IMAGES */
.product-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  /* padding: 18px; */

  display: block;

  transition: transform 0.7s ease;
}


.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 11px;
  background: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.product-image button {
  position: absolute;
  z-index: 2;
  right: 17px;
  bottom: 17px;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  background: var(--brown-dark);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.product-image button:hover {
  transform: rotate(90deg);
  background: var(--brown);
}

.product-info {
  padding: 19px 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
}

.product-info p {
  font-size: 11px;
  margin-top: 5px;
  color: var(--muted);
}

.product-info > span {
  font-size: 11px;
  color: var(--brown);
}

.why-us {
  padding: 110px 7%;
  background: var(--brown-dark);
  color: white;
}

.why-heading {
  max-width: 800px;
  margin-bottom: 65px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.why-card {
  padding: 40px 30px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.why-card + .why-card {
  padding-left: 30px;
}

.why-card:last-child {
  border: none;
}

.why-card > span {
  color: var(--beige);
  font-size: 10px;
}

.why-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  margin: 35px 0 15px;
}

.why-card p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.57);
}

.inspiration {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inspiration > img {
  position: absolute;
  inset: 0;
}

.inspiration-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 21, 14, 0.43);
}

.inspiration-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
  color: white;
}

.inspiration-content > span {
  font-size: 10px;
  letter-spacing: 0.22em;
}

.inspiration-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(55px, 7vw, 95px);
  line-height: 0.95;
  margin: 25px 0 35px;
}

.inspiration-content h2 em {
  color: var(--beige);
}

.inspiration-content a {
  padding-bottom: 7px;
  border-bottom: 1px solid white;
  font-size: 12px;
}

.stats {
  padding: 75px 7%;
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  border-right: 1px solid #d7cec4;
}

.stat:last-child {
  border: none;
}

.stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(45px, 5vw, 70px);
  font-weight: 600;
  color: #684833;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: #76665c;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-cta {
  padding: 100px 7%;
  background: var(--brown);
  color: white;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: center;
}

.contact-cta h2 span {
  color: var(--beige);
}

.contact-cta-right p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.73);
  line-height: 1.9;
  margin-bottom: 30px;
}

.footer {
  background: #1c120e;
  color: white;
  padding: 80px 7% 25px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
}

.footer-brand h2 span {
  font-weight: 400;
  color: var(--beige);
}

.footer-brand p {
  max-width: 330px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
  font-size: 13px;
}

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

.footer-column h3 {
  color: var(--beige);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-column a, .footer-column p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  transition: 0.3s;
}

.footer-column a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

/* =========================================================
   COMPLETE HOME PAGE MOBILE RESPONSIVE PADDING
   Add at the very bottom of style.css
========================================================= */

@media (max-width: 600px) {

  :root {
    --mobile-padding: 24px;
  }


  /* PREVENT HORIZONTAL OVERFLOW */

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

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

  img,
  video {
    max-width: 100%;
  }


  /* HEADER */

  .header {
    width: 100%;
    height: 75px;

    padding-left: var(--mobile-padding) !important;
    padding-right: var(--mobile-padding) !important;
  }

  .logo {
    font-size: 22px;
  }

  .header-btn {
    display: none;
  }


  /* HERO */

  .hero {
    width: 100%;

    padding:
      115px var(--mobile-padding)
      65px !important;
  }

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

  .hero h1 {
    width: 100%;
    max-width: 100%;

    font-size: clamp(43px, 12vw, 52px);
    line-height: 0.94;

    overflow-wrap: break-word;
  }

  .hero-content > p {
    width: 100%;
    max-width: 100%;

    font-size: 13px;
    line-height: 1.75;
  }

  .hero-buttons {
    width: 100%;

    flex-direction: column;
    align-items: stretch;
  }

  .hero .btn-primary,
  .hero .btn-outline {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
  }


  /* COMMON PADDED SECTIONS */

  .intro.section,
  .categories.section,
  .about.section,
  .products.section {
    width: 100%;
    max-width: 100%;

    padding:
      70px var(--mobile-padding)
      75px !important;
  }

  .intro.section > *,
  .categories.section > *,
  .about.section > *,
  .products.section > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }


  /* COMMON HEADINGS */

  .section-heading {
    width: 100%;
    max-width: 100%;

    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
    margin-bottom: 38px;
  }

  .section-heading > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .section-heading h2,
  .intro h2,
  .about h2,
  .signature h2,
  .why-heading h2,
  .contact-cta h2 {
    width: 100%;
    max-width: 100%;

    font-size: clamp(37px, 10.5vw, 44px) !important;
    line-height: 0.98;

    white-space: normal;
    overflow-wrap: break-word;
  }


  /* INTRO */

  .intro {
    height: auto !important;

    grid-template-columns: 1fr;
    gap: 35px;
  }

  .intro-left,
  .intro-right {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .intro-right p {
    width: 100%;
    max-width: 100%;
  }


  /* CATEGORIES */

  .category-grid {
    width: 100%;
    max-width: 100%;

    grid-template-columns: 1fr;
    gap: 22px;
  }

  .category-flip-card,
  .category-large {
    width: 100%;
    max-width: 100%;

    grid-column: auto;
    height: 430px;
  }

  .category-card-content {
    padding: 25px 22px;
  }

  .category-card-content h3 {
    font-size: 34px;
  }


  /* ABOUT */

  .about {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-wrap,
  .about-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-image-wrap {
    min-height: 430px;
  }

  .about-image-main {
    width: 90%;
    height: 380px;
  }

  .about-small-image {
    width: 45%;
    height: 150px;
  }

  .experience-box {
    right: 0;
    top: 20px;

    max-width: 170px;
    padding: 16px;
  }


  /* SIGNATURE SECTION */

  .signature {
    width: 100%;
    height: auto;
    min-height: 0;

    grid-template-columns: 1fr;
  }

  .signature-content {
    width: 100%;
    max-width: 100%;

    padding:
      70px var(--mobile-padding)
      75px !important;
  }

  .signature-content p {
    width: 100%;
    max-width: 100%;
  }

   .signature-image {
    width: calc(100% - 48px);
    height: 350px;
    min-height: 0;

    margin: 0 24px 24px;

    overflow: hidden;
    border-radius: 12px;
  }

  .signature-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    object-position: center;
  }


  /* PRODUCTS */

  .products .section-heading h2 {
    font-size: clamp(37px, 10.5vw, 42px) !important;
  }

  .product-grid {
    width: 100%;
    max-width: 100%;

    grid-template-columns: 1fr;
    gap: 28px;

    padding: 0 !important;
    margin: 0;
  }

  .product-card,
  .product-image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-image {
    height: 410px;
  }


  /* WHY US */

  .why-us {
    width: 100%;
    max-width: 100%;

    padding:
      70px var(--mobile-padding)
      75px !important;
  }

  .why-heading,
  .why-grid {
    width: 100%;
    max-width: 100%;
  }

  .why-heading {
    margin-bottom: 40px;
  }

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

  .why-card,
  .why-card + .why-card {
    width: 100%;

    padding: 32px 0 !important;

    border-right: 0;
    border-bottom:
      1px solid rgba(255, 255, 255, 0.13);
  }


  /* INSPIRATION */

  .inspiration {
    width: 100%;
    min-height: 570px;

    padding:
      70px var(--mobile-padding) !important;
  }

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

  .inspiration-content h2 {
    width: 100%;
    max-width: 100%;

    font-size: clamp(42px, 12vw, 52px) !important;
    line-height: 0.95;

    overflow-wrap: break-word;
  }


  /* STATS */

  .stats {
    width: 100%;

    padding:
      55px var(--mobile-padding) !important;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 0;
  }

  .stat {
    min-width: 0;
    padding: 10px;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat strong {
    font-size: 42px;
  }


  /* CONTACT CTA */

  .contact-cta {
    width: 100%;
    max-width: 100%;

    padding:
      70px var(--mobile-padding)
      75px !important;

    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-cta > *,
  .contact-cta-right {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .contact-cta-right p {
    width: 100%;
    max-width: 100%;
  }


  /* FOOTER */
 .footer {
    width: 100%;
    max-width: 100%;

    padding:
      38px var(--mobile-padding)
      18px !important;
  }


  /* FOOTER GRID */

  .footer-top {
    width: 100%;

    display: grid;
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    column-gap: 24px;
    row-gap: 25px;

    padding-bottom: 28px;
  }


  /* BRAND TAKES FULL WIDTH */

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand h2 {
    margin: 0;

    font-size: 29px;
    line-height: 1;
  }

  .footer-brand p {
    max-width: 310px;

    margin-top: 13px;

    font-size: 11px;
    line-height: 1.6;
  }


  /* EXPLORE + COLLECTIONS SIDE-BY-SIDE */

  .footer-column {
    width: 100%;
    min-width: 0;

    gap: 8px;
  }

  .footer-column h3 {
    margin: 0 0 6px;

    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .footer-column a,
  .footer-column p {
    margin: 0;

    font-size: 10px;
    line-height: 1.5;

    overflow-wrap: anywhere;
  }


  /* CONTACT TAKES FULL WIDTH */

  .footer-column:last-child {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    column-gap: 20px;
    row-gap: 7px;

    padding-top: 4px;
  }

  .footer-column:last-child h3 {
    grid-column: 1 / -1;
  }

  .footer-column:last-child p:last-child {
    grid-column: 1 / -1;
  }


  /* FOOTER BOTTOM */

  .footer-bottom {
    width: 100%;

    padding-top: 16px;

    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    gap: 15px;
  }

  .footer-bottom p {
    margin: 0;

    font-size: 8px;
    line-height: 1.4;
  }

  .footer-bottom p:last-child {
    text-align: right;
  }

}

/* =====================================================
   WHY US — TWO CARDS PER ROW ON MOBILE
===================================================== */

@media (max-width: 600px) {

  .why-us {
    width: 100%;
    max-width: 100%;

    padding:
      70px var(--mobile-padding)
      75px !important;

    overflow: hidden;
  }

  .why-heading {
    width: 100%;
    max-width: 100%;

    margin-bottom: 38px;
  }

  .why-heading h2 {
    font-size: clamp(36px, 10vw, 42px) !important;
    line-height: 0.98;
  }


  /* TWO CARDS IN EACH ROW */

  .why-grid {
    width: 100%;
    max-width: 100%;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    column-gap: 18px;
    row-gap: 0;

    border-top:
      1px solid rgba(255, 255, 255, 0.13);
  }


  /* COMMON CARD */

  .why-card,
  .why-card + .why-card {
    width: 100%;
    min-width: 0;

    padding: 28px 0 !important;

    border-right: 0;
    border-bottom:
      1px solid rgba(255, 255, 255, 0.13);
  }


  /* LEFT CARDS — 01 AND 03 */

  .why-card:nth-child(odd) {
    padding-right: 14px !important;

    border-right:
      1px solid rgba(255, 255, 255, 0.13);
  }


  /* RIGHT CARDS — 02 AND 04 */

  .why-card:nth-child(even) {
    padding-left: 14px !important;
  }


  /* CARD NUMBER */

  .why-card > span {
    font-size: 9px;
  }


  /* CARD HEADING */

  .why-card h3 {
    margin: 22px 0 12px;

    font-size: clamp(20px, 5.5vw, 24px);
    line-height: 1.05;

    overflow-wrap: break-word;
  }


  /* CARD DESCRIPTION */

  .why-card p {
    font-size: 11px;
    line-height: 1.65;

    overflow-wrap: break-word;
  }


  /* REMOVE LAST ROW BOTTOM BORDER */

  .why-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

}

.scrolling-text-section {
  width: 100%;
  padding: 25px 0;

  overflow: hidden;

  background: #2b1b14;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.scrolling-text-track {
  width: max-content;

  display: flex;

  animation: furnitureScroll 25s linear infinite;
}

.scrolling-text-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.scrolling-text-content span {
  padding: 0 35px;

  color: #f7eee4;

  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 600;

  letter-spacing: 0.04em;
  white-space: nowrap;
}

.scrolling-text-content i {
  color: #c79a70;
  font-size: 11px;
  font-style: normal;
}

@keyframes furnitureScroll {
  from {
    transform: translateX(0);
  }

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

.scrolling-text-section:hover .scrolling-text-track {
  animation-play-state: paused;
}


/* MOBILE */

@media (max-width: 600px) {
  .scrolling-text-section {
    padding: 18px 0;
  }

  .scrolling-text-content span {
    padding: 0 22px;
    font-size: 20px;
  }

  .scrolling-text-track {
    animation-duration: 18s;
  }
}




.about-premium {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  min-height: 760px;

  background: #f8f3ed;
}


/* =========================
   LEFT SIDE
========================= */

.about-premium-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;

  background: #261811;
}


.about-premium-image {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #2a1b14;
}

.about-premium-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  display: block;
}

.about-premium-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #2a1b14;
}

.about-premium:hover .about-premium-image img {
  transform: scale(1.025);
}


/* EXPERIENCE CARD */

.about-experience-card {
  position: absolute;

  top: 55px;
  right: 0;

  z-index: 5;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 24px 32px;

  background: rgba(63, 36, 24, 0.96);

  backdrop-filter: blur(10px);
}


.experience-number {
  font-family: Georgia, serif;

  font-size: 48px;
  line-height: 1;

  color: #f4d4b1;
}


.about-experience-card div {
  display: flex;
  flex-direction: column;
}


.about-experience-card small,
.about-experience-card strong {
  color: #fff;
}


.about-experience-card small {
  font-size: 10px;
  letter-spacing: 1.5px;
}


.about-experience-card strong {
  font-size: 11px;
  margin-top: 3px;
}


/* IMAGE CAPTION */

.about-image-caption {
  position: absolute;

  left: 55px;
  right: 55px;
  bottom: 48px;

  z-index: 4;

  max-width: 470px;
}


.about-image-caption span {
  display: inline-block;

  margin-bottom: 12px;

  color: #e6b98e;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 3px;
}


.about-image-caption p {
  margin: 0;

  font-family: Georgia, serif;

  font-size: 28px;
  line-height: 1.3;

  color: #ffffff;
}


/* =========================
   RIGHT SIDE
========================= */

.about-premium-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 80px 85px;

  background: #fbf7f2;
}


.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-bottom: 24px;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 3px;

  color: #9a664a;
}


.about-eyebrow span {
  width: 42px;
  height: 1px;

  background: #9a664a;
}


.about-premium-content h2 {
  margin: 0;

  font-family: Georgia, serif;

  font-size: clamp(48px, 4.6vw, 72px);

  line-height: 1.02;

  font-weight: 400;

  color: #2d1c15;
}


.about-premium-content h2 em {
  display: block;

  margin-top: 6px;

  font-weight: 400;

  color: #8b5b42;
}


.about-intro {
  max-width: 590px;

  margin: 34px 0 0;

  font-size: 15px;
  line-height: 1.9;

  color: #74665e;
}


/* STATS */

.about-premium-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 48px;

  border-top: 1px solid #ddcfc3;
  border-bottom: 1px solid #ddcfc3;
}


.premium-stat {
  padding: 28px 22px 25px 0;

  border-right: 1px solid #ddcfc3;
}


.premium-stat:last-child {
  border-right: 0;
  padding-left: 22px;
}


.premium-stat:nth-child(2) {
  padding-left: 22px;
}


.premium-stat strong {
  display: block;

  margin-bottom: 7px;

  font-family: Georgia, serif;

  font-size: 30px;
  font-weight: 400;

  color: #2c1911;
}


.premium-stat span {
  font-size: 11px;

  color: #8b776c;
}


/* FEATURES */

.about-premium-features {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 0 35px;

  margin-top: 30px;
}


.about-premium-features > div {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 17px 0;

  border-bottom: 1px solid #e5d9cf;
}


.about-premium-features span {
  font-family: Georgia, serif;

  font-size: 12px;

  color: #a66c4d;
}


.about-premium-features p {
  margin: 0;

  font-size: 13px;

  color: #39271f;
}


/* BUTTON */

.about-premium-btn {
  align-self: flex-start;

  display: inline-flex;
  align-items: center;
  gap: 30px;

  margin-top: 38px;

  padding: 18px 26px;

  background: #5d3928;

  color: #ffffff;

  text-decoration: none;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.6px;

  text-transform: uppercase;

  transition: 0.3s ease;
}


.about-premium-btn span {
  font-size: 18px;

  transition: transform 0.3s ease;
}


.about-premium-btn:hover {
  background: #2e1b13;
}


.about-premium-btn:hover span {
  transform: translate(4px, -3px);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {

  .about-premium {
    grid-template-columns: 1fr;
  }

  .about-premium-visual {
    min-height: 650px;
  }

  .about-premium-content {
    padding: 70px 55px;
  }
}


@media (max-width: 650px) {

  .about-premium-visual {
    min-height: 520px;
  }

  .about-experience-card {
    top: 25px;

    padding: 18px 22px;
  }

  .experience-number {
    font-size: 38px;
  }

  .about-image-caption {
    left: 25px;
    right: 25px;
    bottom: 30px;
  }

  .about-image-caption p {
    font-size: 22px;
  }

  .about-premium-content {
    padding: 55px 25px;
  }

  .about-premium-content h2 {
    font-size: 44px;
  }

  .about-premium-stats {
    grid-template-columns: 1fr;
  }

  .premium-stat {
    border-right: 0;
    border-bottom: 1px solid #ddcfc3;

    padding: 20px 0 !important;
  }

  .premium-stat:last-child {
    border-bottom: 0;
  }

  .about-premium-features {
    grid-template-columns: 1fr;
  }
}
.bharathi-about {
  width: 100%;
  min-height: 750px;
  display: grid;
  grid-template-columns: 50% 50%;
  background: #f8f4ee;
}


/* ===============================
   LEFT IMAGE
================================ */

.bharathi-about-image {
  position: relative;

  width: 100%;
  min-height: 750px;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;

  background: #eee5da;
}


.bharathi-about-image > img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center center;

  display: block;
}


/* DECORATIVE BOTTOM SHAPE */

.about-image-shape {
  position: absolute;
  right: 0;
  bottom: 0;

  width: 130px;
  height: 130px;

  background: #704832;
  z-index: 2;
}


/* EXPERIENCE BOX */

.about-experience {
  position: absolute;

  top: 60px;
  right: 0;

  width: 190px;
  height: 110px;

  background: #43291d;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  padding: 20px;

  z-index: 5;
}


.about-experience strong {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;

  color: #e9d2b7;
  line-height: 1;
}


.about-experience span {
  color: #ffffff;

  font-size: 11px;
  font-weight: 600;

  line-height: 1.5;

  text-transform: uppercase;
}
.bharathi-about-image {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 750px;

  background: #efe5d8;

  overflow: hidden;
}


/* IMAGE TOP */

.about-store-image {
  width: 100%;
  height: 520px;

  overflow: hidden;
}

.about-store-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}


/* TEXT BELOW IMAGE */

.about-left-content {
  padding: 38px 55px 45px;

  max-width: 520px;
}


.about-left-tag {
  display: inline-block;

  margin-bottom: 12px;

  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;

  color: #9b684a;
}


.about-left-content h3 {
  margin: 0 0 14px;

  font-family: Georgia, serif;

  font-size: 31px;
  line-height: 1.2;
  font-weight: 400;

  color: #3f281e;
}


.about-left-content p {
  margin: 0;

  font-size: 14px;
  line-height: 1.8;

  color: #796b62;
}


/* EXPERIENCE CARD */

.about-experience {
  position: absolute;

  top: 60px;
  right: 0;

  width: 190px;
  height: 110px;

  background: #43291d;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 20px;

  z-index: 5;
}


.about-experience strong {
  font-family: Georgia, serif;

  font-size: 42px;
  font-weight: 400;

  color: #ead0b2;

  line-height: 1;
}


.about-experience span {
  color: white;

  font-size: 11px;
  font-weight: 600;

  line-height: 1.4;

  text-transform: uppercase;
}


/* BOTTOM DECORATIVE BLOCK */

.about-image-shape {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 130px;
  height: 130px;

  background: #704832;
}

.bharathi-about-content {
  position: relative;
  padding: 90px
    clamp(40px, 7vw, 110px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #f8f4ee;
}

.about-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #805d46;
}

.about-title-line {
  width: 0;
  height: 2px;
  margin: 26px 0 30px;
  background: linear-gradient(
      90deg,
      #5f402f,
      #c9ab8c
    );
  animation: aboutLineReveal
    1.2s ease
    forwards;
  animation-delay: 0.6s;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 26px 0
    28px;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 20px 0;
  border-top: 1px solid #d9cdc1;
  border-bottom: 1px solid #d9cdc1;
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #a98870;
  color: #704c37;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 18px;
  transition: 0.35s;
}

.about-stat:hover .stat-icon {
  background: #5f402f;
  border-color: #5f402f;
  color: white;
  transform: translateY(-4px);
}

.about-stat h3 {
  margin: 0;
  color: #3b261c;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 31px;
  line-height: 1;
}

.about-stat p {
  margin-top: 4px;
  color: #76685f;
  font-size: 11px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 30px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b3d35;
  font-size: 12px;
  font-weight: 600;
}

.about-feature span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e4d3c2;
  color: #654631;
  border-radius: 50%;
  font-size: 10px;
}

.about-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 16px 26px;
  background: #5f402f;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.about-btn span {
  font-size: 18px;
  transition: transform 0.35s ease;
}

.about-btn:hover {
  background: #352219;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px
    rgba(60, 38, 27, 0.18);
}

.about-btn:hover span {
  transform: translateX(6px);
}

.about-title {
  max-width: 650px;
  margin: 0;
  font-family: "Cormorant Garamond",
    serif;
  font-size: clamp(30px, 5.5vw, 58px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #31221b;
  overflow: hidden;
  animation: aboutTitleReveal
    1s cubic-bezier(
      0.22,
      1,
      0.36,
      1
    ) both;
}

.about-title span {
  display: block;
  margin-top: 8px;
  color: #795540;
  font-style: italic;
  font-weight: 500;
  animation: aboutTitleSecond
    1.1s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    )
    0.2s both;
}

.about-subtitle {
  position: relative;
  width: fit-content;
  margin-bottom: 18px;
  padding-left: 55px;
  color: #805d46;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: aboutFadeUp
    0.8s ease both;
}

.about-description {
  max-width: 620px;
  margin-bottom: 15px;
  color: #73665e;
  font-size: 14px;
  line-height: 1.9;
  animation: aboutFadeUp
    0.9s ease 0.35s both;
}

@keyframes aboutTitleReveal {
  from {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes aboutTitleSecond {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutLineReveal {
  from {
    width: 0;
  }

  to {
    width: 90px;
  }
}

.inner-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 90px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.inner-logo {
  font-family: "Cormorant Garamond",
    serif;
  font-size: 29px;
  font-weight: 700;
  color: #ffffff;
}

.inner-logo span {
  color: #d8c3a5;
  font-weight: 500;
}

.inner-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.inner-nav a {
  position: relative;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.inner-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: #d8c3a5;
  transition: 0.35s;
}

.inner-nav a:hover {
  color: white;
}

.inner-nav a:hover::after, .inner-nav a.active::after {
  width: 100%;
}

.inner-nav a.active {
  color: #d8c3a5;
}

.inner-header-btn {
  padding: 13px 22px;
  border: 1px solid rgba(255,255,255,0.65);
  color: white;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.inner-header-btn:hover {
  background: white;
  color: #3b2418;
}

.about-page-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 150px 7%
    80px;
  overflow: hidden;
  background: #2b1b14;
}

.about-hero-image {
  position: absolute;
  inset: 0;
  background: url(
      "./image/aboutbg.png"
    )
    center / cover
    no-repeat;
  animation: aboutHeroZoom
    12s ease-in-out
    infinite alternate;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,

      rgba(35,20,13,0.94) 0%,

      rgba(47,28,19,0.78) 40%,

      rgba(47,28,19,0.3) 75%
    );
}

.about-hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  color: white;
  animation: aboutHeroContent
    1s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    )
    both;
}

.about-hero-small {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: #d8c3a5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-hero-small::before {
  content: "";
  width: 45px;
  height: 1px;
  background: #d8c3a5;
}

.about-hero-content h1 {
  margin: 0;
  font-family: "Cormorant Garamond",
    serif;
  font-size: clamp(62px, 8vw, 105px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.about-hero-content h1 em {
  display: block;
  margin-top: 10px;
  color: #d8c3a5;
  font-weight: 500;
}

.about-hero-content > p {
  max-width: 570px;
  margin-top: 28px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.9;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-breadcrumb a {
  color: #d8c3a5;
}

.about-breadcrumb span {
  opacity: 0.5;
}

.about-breadcrumb p {
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.about-hero-number {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 55px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.about-hero-number > span {
  font-family: "Cormorant Garamond",
    serif;
  font-size: 27px;
  color: #d8c3a5;
}

.about-hero-number > div {
  width: 70px;
  height: 1px;
  background: rgba(255,255,255,0.45);
}

.about-hero-number p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.categories {
  background: #f8f0e5;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
  margin-top: 55px;
}

.category-flip-card {
  position: relative;
  height: 500px;
  perspective: 1400px;
}

.category-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.85s
    cubic-bezier(
      0.22,
      0.61,
      0.36,
      1
    );
  transform-style: preserve-3d;
}

.category-flip-card:hover .category-flip-inner {
  transform: rotateY(180deg);
}

.category-flip-front, .category-flip-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 20px 50px
    rgba(65, 40, 24, 0.15);
}

.category-flip-front {
  background: #3d281c;
}

.category-flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.category-flip-card:hover .category-flip-front img {
  transform: scale(1.08);
}

.category-front-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,

      rgba(42, 26, 16, 0.90),

      rgba(42, 26, 16, 0.15)
      60%,

      transparent
    );
}

.category-front-content {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 30px;
  color: #ffffff;
}

.category-front-content > span {
  display: block;
  margin-bottom: 8px;
  font-family: "Manrope",
    sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: #ead8c3;
}

.category-front-content h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 43px;
  line-height: 1;
  font-weight: 600;
}

.category-front-content small {
  display: inline-block;
  font-family: "Manrope",
    sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(
    255,
    255,
    255,
    0.75
  );
  transform: translateX(0);
  transition: 0.3s ease;
}

.category-flip-card:hover .category-front-content small {
  transform: translateX(7px);
}

.category-flip-back {
  transform: rotateY(180deg);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
      145deg,

      #2e1c12,

      #51331f
    );
  color: #fffaf3;
}

.category-back-number {
  position: absolute;
  right: 20px;
  top: 5px;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 110px;
  line-height: 1;
  font-weight: 600;
  color: rgba(
      255,
      248,
      238,
      0.055
    );
  pointer-events: none;
}

.category-back-label {
  display: inline-block;
  position: relative;
  margin-bottom: 18px;
  font-family: "Manrope",
    sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: #d7b896;
}

.category-flip-back h3 {
  position: relative;
  margin: 0 0 18px;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 46px;
  line-height: 1;
  font-weight: 600;
  color: #fffaf3;
}

.category-flip-back p {
  position: relative;
  margin: 0;
  max-width: 420px;
  font-family: "Manrope",
    sans-serif;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(
      255,
      250,
      243,
      0.70
    );
}

.category-back-items {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.category-back-items span {
  padding: 8px 11px;
  border: 1px solid
    rgba(
      255,
      255,
      255,
      0.17
    );
  border-radius: 50px;
  font-family: "Manrope",
    sans-serif;
  font-size: 10px;
  color: #ead8c3;
  background: rgba(
      255,
      255,
      255,
      0.04
    );
}

.category-flip-back > a {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid #d6b18b;
  color: #fffaf3;
  font-family: "Manrope",
    sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.category-flip-back > a span {
  transition: transform 0.3s ease;
}

.category-flip-back > a:hover {
  color: #e5c5a3;
}

.category-flip-back > a:hover span {
  transform: translateX(6px);
}

@media ( max-width: 1050px ) {
  .bharathi-experience {
    grid-template-columns: 1fr;
  }

  .experience-editorial-image {
    min-height: 650px;
  }

  .experience-editorial-content {
    padding: 85px 7%;
  }

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

  .category-large {
    grid-column: 1 / -1;
  }

  .category-flip-card {
    height: 440px;
  }
}

@keyframes aboutHeroContent {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutHeroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.sofa-showcase {
  padding: 120px 7%;
  background: #f8f4ee;
}

.sofa-showcase-wrapper {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: center;
}

.sofa-content {
  max-width: 520px;
}

.section-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: #76523d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 42px;
  height: 1px;
  background: #76523d;
}

.sofa-content h1 {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(55px, 6vw, 85px);
  line-height: 0.9;
  font-weight: 600;
  color: #32221a;
  animation: sofaTitleReveal 0.9s ease both;
}

.sofa-content h1 span {
  display: block;
  margin-top: 10px;
  color: #805b44;
  font-style: italic;
  font-weight: 500;
}

.sofa-content p {
  color: #71655d;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.sofa-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  background: #5f402f;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.35s ease;
}

.sofa-btn span {
  font-size: 18px;
  transition: 0.35s ease;
}

.sofa-btn:hover {
  background: #332119;
  transform: translateY(-4px);
}

.sofa-btn:hover span {
  transform: translateX(6px);
}

.sofa-gallery {
  width: 100%;
}

.sofa-main-image {
  position: relative;
  width: 100%;
  height: 610px;
  overflow: hidden;
  background: #f8f4ee;
  padding: 20px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
}

.sofa-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.sofa-main-image:hover img {
  transform: scale(1.015);
}

.sofa-image-label {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(49, 31, 22, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
}

.sofa-image-label > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.35);
  color: #d8c3a5;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}

.sofa-image-label h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
}

.sofa-image-label p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 0.05em;
}

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

.sofa-thumb {
  position: relative;
  height: 160px;
  padding: 0;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  transition: 0.35s ease;
}

.sofa-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f8f4ee;
  display: block;
  transition: 0.5s ease;
}

.sofa-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(52, 31, 21, 0.18);
  transition: 0.3s ease;
}

.sofa-thumb span {
  position: absolute;
  z-index: 3;
  left: 12px;
  bottom: 10px;
  width: 29px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 29, 20, 0.9);
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
}

.sofa-thumb:hover img {
  transform: scale(1.07);
}

.sofa-thumb.active {
  border-color: #684833;
}

.sofa-thumb.active::after {
  background: rgba(95, 64, 47, 0.05);
}

@keyframes sofaTitleReveal {
  from {
    opacity: 0;
    transform: translateY(45px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.collection-hero {
  position: relative;
  width: 100%;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 150px 7% 100px;
  overflow: hidden;
  background: #2b1b14;
}

.collection-hero-bg {
  position: absolute;
  inset: 0;
  background: url("./image/sofa4.png")
    center / cover no-repeat;
  animation: collectionHeroZoom
    14s ease-in-out
    infinite alternate;
}

.collection-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      90deg,

      rgba(31, 18, 12, 0.96) 0%,

      rgba(45, 27, 18, 0.84) 35%,

      rgba(45, 27, 18, 0.47) 68%,

      rgba(30, 18, 12, 0.2) 100%
    ),

    linear-gradient(
      0deg,

      rgba(25, 14, 9, 0.55),

      transparent 55%
    );
}

.collection-hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  color: #ffffff;
}

.collection-eyebrow {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 15px;
  margin-bottom: 24px;
  color: #d8c3a5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  animation: collectionFadeUp
    0.8s ease both;
}

.collection-eyebrow::before {
  content: "";
  width: 45px;
  height: 1px;
  background: #d8c3a5;
}

.collection-hero-content h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Cormorant Garamond",
    serif;
  font-size: clamp(65px, 8vw, 110px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.035em;
  animation: collectionTitleReveal
    1s
    cubic-bezier(0.22, 1, 0.36, 1)
    0.1s both;
}

.collection-hero-content h1 em {
  display: block;
  margin-top: 12px;
  color: #d8c3a5;
  font-weight: 500;
  font-style: italic;
  animation: collectionSecondTitle
    1.1s
    cubic-bezier(0.22, 1, 0.36, 1)
    0.3s both;
}

.collection-hero-content > p {
  max-width: 590px;
  margin-top: 30px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.9;
  animation: collectionFadeUp
    0.9s ease
    0.5s both;
}

.collection-breadcrumb {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: collectionFadeUp
    0.9s ease
    0.65s both;
}

.collection-breadcrumb a {
  color: #d8c3a5;
  transition: 0.3s;
}

.collection-breadcrumb a:hover {
  color: #ffffff;
}

.collection-breadcrumb span {
  color: rgba(255,255,255,0.4);
}

.collection-breadcrumb p {
  margin: 0;
  color: rgba(255,255,255,0.7);
}

.collection-hero-bottom {
  position: absolute;
  z-index: 3;
  left: 7%;
  right: 7%;
  bottom: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.collection-number {
  display: flex;
  align-items: center;
  gap: 15px;
}

.collection-number > span {
  font-family: "Cormorant Garamond",
    serif;
  color: #d8c3a5;
  font-size: 27px;
}

.collection-number > div {
  width: 65px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.collection-number p {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.collection-scroll {
  display: none;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: 0.3s;
}

.collection-scroll span {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  transition: 0.3s;
}

.collection-scroll:hover span {
  background: #d8c3a5;
  border-color: #d8c3a5;
  color: #332119;
  transform: translateY(4px);
}

@keyframes collectionTitleReveal {
  from {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes collectionSecondTitle {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes collectionFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes collectionHeroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 130px 6%

      80px;
  }

  .hero-overlay {
    background: linear-gradient(
        90deg,

        rgba(29, 17, 11, 0.9),

        rgba(29, 17, 11, 0.55)
      );
  }

  .hero h1 {
    font-size: clamp(52px, 10vw, 80px);
  }

  .hero-label {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .inner-nav {
    display: none;
  }

  .about-page-hero {
    min-height: 560px;
  }

  .about-hero-number {
    display: none;
  }

  .collection-hero {
    min-height: 620px;
    padding: 140px 6%
      100px;
  }

  .collection-hero-overlay {
    background: linear-gradient(
        90deg,

        rgba(31,18,12,0.94),

        rgba(31,18,12,0.6)
      );
  }
}

.furniture-categories {
  position: relative;
  padding: 120px 7%;
  background: #fffdf9;
}

.category-section-head {
  max-width: 1450px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

.category-section-head > div {
  max-width: 760px;
}

.category-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  color: #79543e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.category-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: #79543e;
}

.category-section-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: #302018;
}

.category-section-head h2 em {
  color: #805940;
  font-weight: 500;
}

.category-section-head > p {
  max-width: 410px;
  margin: 0;
  color: #786a61;
  font-size: 13px;
  line-height: 1.9;
}

.furniture-category-grid {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.furniture-category-card {
  position: relative;
  height: 520px;
  display: block;
  overflow: hidden;
  background: #322117;
  isolation: isolate;
  cursor: pointer;
  box-shadow: 0 10px 30px

    rgba(51, 33, 23, 0.06);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1),

    box-shadow 0.5s ease;
}

.category-card-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1),

    filter 0.5s ease;
}

.furniture-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(

      180deg,

      rgba(31, 19, 13, 0.05) 15%,

      rgba(34, 21, 14, 0.18) 43%,

      rgba(32, 19, 12, 0.92) 100%

    );
  transition: 0.5s ease;
}

.category-card-number {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid

    rgba(255,255,255,0.5);
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  backdrop-filter: blur(7px);
  background: rgba(45,28,19,0.15);
  transition: 0.4s ease;
}

.category-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 30px

    30px;
  color: #ffffff;
  transform: translateY(72px);
  transition: transform

    0.55s

    cubic-bezier(.2,.7,.2,1);
}

.category-card-content > span {
  display: block;
  margin-bottom: 9px;
  color: #ddc5ab;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.category-card-content h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 41px;
  font-weight: 600;
  line-height: 1;
}

.category-card-content p {
  max-width: 340px;
  margin: 15px 0

    17px;
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease,

    transform 0.4s ease;
}

.category-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid

    rgba(255,255,255,0.25);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease 0.08s,

    transform 0.4s ease 0.08s;
}

.category-card-link i {
  font-family: Arial, sans-serif;
  font-style: normal;
  font-size: 20px;
  transition: transform 0.35s ease;
}

.furniture-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px

    rgba(51, 33, 23, 0.18);
}

.furniture-category-card:hover .category-card-image img {
  transform: scale(1.1);
  filter: brightness(0.85);
}

.furniture-category-card:hover::after {
  background: linear-gradient(

      180deg,

      rgba(31,19,13,0.08),

      rgba(42,25,16,0.25) 40%,

      rgba(38,22,14,0.98) 100%

    );
}

.furniture-category-card:hover .category-card-content {
  transform: translateY(0);
}

.furniture-category-card:hover .category-card-content p, .furniture-category-card:hover .category-card-link {
  opacity: 1;
  transform: translateY(0);
}

.furniture-category-card:hover .category-card-link i {
  transform: translateX(7px);
}

.furniture-category-card:hover .category-card-number {
  background: #6c4934;
  border-color: #6c4934;
  transform: rotate(5deg);
}

.about-values {
  position: relative;
  padding: 115px 7%;
  background: #2f1e16;
  overflow: hidden;
}

.about-values::before {
  content: "BHARATHI";
  position: absolute;
  right: -40px;
  top: 25px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(100px, 15vw, 230px);
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
}

.about-values-head {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 85px;
}

.about-values-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  color: #d8c3a5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.about-values-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: #d8c3a5;
}

.about-values-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 600;
  line-height: 0.92;
  color: #ffffff;
}

.about-values-head h2 em {
  display: block;
  margin-top: 8px;
  color: #d8c3a5;
  font-weight: 500;
}

.about-values-head p {
  max-width: 590px;
  margin-top: 25px;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.9;
}

.about-values-line {
  position: relative;
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-values-line::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(216,195,165,0.55) 10%,
      rgba(216,195,165,0.55) 90%,
      transparent
    );
}

.about-values-line::after {
  content: "";
  position: absolute;
  top: 55px;
  left: 8%;
  width: 84%;
  height: 1px;
  background: #d8c3a5;
  transform-origin: left center;
  transform: scaleX(0);
  animation: valuesLineGrow
    1.8s ease
    0.3s forwards;
}

.about-value-item {
  position: relative;
  z-index: 3;
  padding: 0 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-value-item.show {
  opacity: 1;
  transform: translateY(0);
}

.about-value-item:nth-child(1) {
  transition-delay: 0.2s;
}

.about-value-item:nth-child(2) {
  transition-delay: 0.45s;
}

.about-value-item:nth-child(3) {
  transition-delay: 0.8s;
}

.about-value-item:nth-child(4) {
  transition-delay: 0.95s;
}

.value-icon {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5eee6;
  border: 7px solid #2f1e16;
  box-shadow: 0 0 0 1px rgba(216,195,165,0.45);
  transition: transform 0.45s ease,
    background 0.45s ease,
    box-shadow 0.45s ease;
}

.value-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #684833;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.4s ease;
}

.value-number {
  display: block;
  margin-bottom: 12px;
  color: #b99172;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
}

.about-value-item h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  font-weight: 600;
  color: #ffffff;
}

.about-value-item p {
  max-width: 260px;
  margin: 13px auto 0;
  color: rgba(255,255,255,0.53);
  font-size: 11px;
  line-height: 1.75;
}

.about-value-item:hover .value-icon {
  transform: translateY(-8px)
    rotate(-4deg);
  background: #704d38;
  box-shadow: 0 15px 35px
    rgba(0,0,0,0.2),
    0 0 0 1px #d8c3a5;
}

.about-value-item:hover .value-icon svg {
  stroke: #ffffff;
  transform: scale(1.08);
}

@keyframes valueAppear {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes valuesLineGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1000px) {
  .bharathi-about {
    grid-template-columns: 1fr;
  }

  .bharathi-about-image {
    min-height: 600px;
  }

  .bharathi-about-content {
    padding: 75px 7%;
  }

  .sofa-showcase-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sofa-content {
    max-width: 700px;
  }

  .about-values-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 0;
  }

  .about-values-line::before, .about-values-line::after {
    display: none;
  }

  .about-values-head {
    margin-bottom: 60px;
  }
}

.products-page-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 150px 7%
    90px;
  overflow: hidden;
  background: #2d1c14;
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  background: url("./image/homebg.jpg")
    center / cover no-repeat;
  animation: productHeroZoom
    14s ease-in-out
    infinite alternate;
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      90deg,
      rgba(31,18,12,0.96),
      rgba(45,27,18,0.81) 40%,
      rgba(45,27,18,0.25)
    ),

    linear-gradient(
      0deg,
      rgba(24,14,9,0.5),
      transparent
    );
}

.products-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  color: white;
}

.products-hero-small {
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  margin-bottom: 22px;
  color: #d8c3a5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.products-hero-small::before {
  content: "";
  width: 45px;
  height: 1px;
  background: #d8c3a5;
}

.products-hero-content h1 {
  margin: 0;
  font-family: "Cormorant Garamond",
    serif;
  font-size: clamp(65px, 8vw, 108px);
  font-weight: 600;
  line-height: 0.89;
  letter-spacing: -0.03em;
  animation: productsTitleReveal
    1s
    cubic-bezier(.22,1,.36,1)
    both;
}

.products-hero-content h1 em {
  display: block;
  margin-top: 10px;
  color: #d8c3a5;
  font-weight: 500;
  animation: productTitleSecond
    1s ease
    0.25s both;
}

.products-hero-content > p {
  max-width: 580px;
  margin-top: 27px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.9;
}

.products-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.products-breadcrumb a {
  color: #d8c3a5;
}

.products-breadcrumb p {
  margin: 0;
  color: rgba(255,255,255,0.65);
}

.products-hero-bottom {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.products-hero-bottom > span {
  color: #d8c3a5;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 26px;
}

.products-hero-bottom > div {
  width: 65px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.products-hero-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-gallery-section {
  padding: 115px 7%;
  background: #f8f4ee;
}

.gallery-heading {
  max-width: 1450px;
  margin: 0 auto
    50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.gallery-heading > div {
  max-width: 800px;
}

.gallery-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #79543e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #79543e;
}

.gallery-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond",
    serif;
  color: #302018;
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 600;
  line-height: 0.9;
}

.gallery-heading h2 em {
  display: block;
  margin-top: 6px;
  color: #79543e;
  font-weight: 500;
}

.gallery-heading > p {
  max-width: 400px;
  margin: 0;
  color: #74675f;
  font-size: 13px;
  line-height: 1.9;
}

.gallery-filters {
  max-width: 1450px;
  margin: 0 auto
    40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 11px 20px;
  border: 1px solid #d6c8ba;
  background: transparent;
  color: #654532;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  background: #60402e;
  border-color: #60402e;
  color: white;
}

.furniture-gallery {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  background: #d8cec4;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s
    cubic-bezier(.2,.7,.2,1);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      transparent 35%,
      rgba(35,20,13,0.88)
    );
  opacity: 0.7;
  transition: 0.4s;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card-overlay {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: white;
  transform: translateY(8px);
  transition: 0.4s;
}

.gallery-card:hover .gallery-card-overlay {
  transform: translateY(0);
}

.gallery-card-overlay span {
  color: #ddc6ac;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.gallery-card-overlay h3 {
  margin: 6px 0 0;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 28px;
  font-weight: 600;
}

.gallery-open {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border: 1px solid
    rgba(255,255,255,0.5);
  border-radius: 50%;
  background: rgba(51,31,21,0.5);
  color: white;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: 0.35s;
}

.gallery-card:hover .gallery-open {
  background: #d8c3a5;
  border-color: #d8c3a5;
  color: #392319;
  transform: rotate(90deg);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(182, 87, 40, 0.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease,
    visibility 0.4s;
}

.gallery-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: min(
    80vh,
    850px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 25px 80px
    rgba(0,0,0,0.35);
  transform: scale(0.94);
  transition: 0.45s;
}

.gallery-lightbox.show .lightbox-content img {
  transform: scale(1);
}

.lightbox-info {
  position: absolute;
  left: 0;
  bottom: -65px;
  color: white;
}

.lightbox-info span {
  color: #d8c3a5;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.lightbox-info h3 {
  margin: 5px 0 0;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 30px;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 35px;
  width: 50px;
  height: 50px;
  z-index: 5;
  border: 1px solid
    rgba(255,255,255,0.35);
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 30px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-close:hover {
  background: #d8c3a5;
  border-color: #d8c3a5;
  color: #342117;
  transform: rotate(90deg);
}

.lightbox-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 55px;
  height: 55px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid
    rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: white;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-prev {
  left: 35px;
}

.lightbox-next {
  right: 35px;
}

.lightbox-arrow:hover {
  background: #d8c3a5;
  color: #382319;
  border-color: #d8c3a5;
}

@keyframes productHeroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.07);
  }
}

@keyframes productsTitleReveal {
  from {
    opacity: 0;
    transform: translateY(55px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes productTitleSecond {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-page {
  position: relative;
  min-height: 100vh;
  padding: 150px 7%
    110px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2b1b14;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: url("./image/homebg.jpg")
    center / cover no-repeat;
  transform: scale(1.04);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,

      rgba(28,16,10,0.95) 0%,

      rgba(42,25,16,0.85) 45%,

      rgba(42,25,16,0.65) 100%
    ),

    linear-gradient(
      0deg,
      rgba(20,12,8,0.55),
      transparent
    );
}

.contact-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.contact-content {
  color: #ffffff;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-bottom: 20px;
  color: #d8c3a5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.contact-eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: #d8c3a5;
}

.contact-content h1 {
  max-width: 750px;
  margin: 0;
  font-family: "Cormorant Garamond",
    serif;
  font-size: clamp(58px, 7vw, 95px);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.contact-content h1 em {
  display: block;
  margin-top: 10px;
  color: #d8c3a5;
  font-weight: 500;
}

.contact-content > p {
  max-width: 550px;
  margin-top: 27px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.9;
}

.contact-info-grid {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  max-width: 470px;
  border: 1px solid

    rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: 0.35s;
}

.contact-info-card:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(216,195,165,0.35);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d8c3a5;
  color: #3b261b;
  font-size: 16px;
}

.contact-info-card span {
  color: #c9a98a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.contact-info-card h3 {
  margin: 5px 0 0;
  color: white;
  font-size: 13px;
  font-weight: 500;
}

.contact-socials {
  margin-top: 35px;
}

.contact-socials > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid

    rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: 0.35s;
}

.social-icons a:hover {
  transform: translateY(-6px);
  background: #d8c3a5;
  color: #3d281d;
  border-color: #d8c3a5;
}

.contact-glass-card {
  position: relative;
  padding: 48px;
  border: 1px solid

    rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 35px 90px

    rgba(0,0,0,0.28);
  border-radius: 24px;
}

.contact-glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 35px;
  right: 35px;
  height: 1px;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.65),
      transparent
    );
}

.form-small-title {
  display: block;
  margin-bottom: 10px;
  color: #d8c3a5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.contact-glass-card h2 {
  margin: 0 0
    35px;
  color: white;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 48px;
  line-height: 0.95;
  font-weight: 600;
}

.contact-glass-card h2 em {
  color: #d8c3a5;
  font-weight: 500;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,0.72);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid

    rgba(255,255,255,0.17);
  outline: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  color: white;
  font-family: "Manrope",
    sans-serif;
  font-size: 12px;
  transition: 0.3s;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255,255,255,0.37);
}

.form-group select {
  color: rgba(255,255,255,0.7);
}

.form-group select option {
  color: #342218;
  background: #f8f4ee;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: #d8c3a5;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px

    rgba(216,195,165,0.08);
}

.contact-submit {
  width: 100%;
  padding: 17px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: none;
  border-radius: 10px;
  background: #d8c3a5;
  color: #382319;
  font-family: "Manrope",
    sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.35s;
}

.contact-submit span {
  font-size: 20px;
  transition: 0.35s;
}

.contact-submit:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px

    rgba(0,0,0,0.2);
}

.contact-submit:hover span {
  transform: translateX(7px);
}

@media (max-width: 1050px) {
  .furniture-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .furniture-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-content {
    max-width: 750px;
  }
}

@media (max-width: 600px) {

  .categories.section {
    padding: 60px 18px;
  }

  .categories .section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .categories .section-heading p {
    margin-top: 12px;
  }

  .categories .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;

    width: 100%;
    padding: 0;
  }

  .categories .category-flip-card,
  .categories .category-large {
    width: 100%;
    height: 430px;

    margin: 0;
    border-radius: 22px;
    overflow: hidden;
  }

  .categories .category-flip-inner {
    width: 100%;
    height: 100%;

    transform: none !important;
  }

  .categories .category-flip-front {
    position: relative;
    width: 100%;
    height: 100%;

    transform: none !important;
    backface-visibility: visible;
  }

  .categories .category-flip-back {
    display: none;
  }

  .categories .category-flip-front img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
  }

  .categories .category-front-overlay {
    position: absolute;
    inset: 0;

    background:
      linear-gradient(
        to top,
        rgba(34, 18, 10, 0.88) 0%,
        rgba(34, 18, 10, 0.38) 48%,
        rgba(34, 18, 10, 0.05) 100%
      );
  }

  .categories .category-front-content {
    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 24px;

    z-index: 3;
  }

  .categories .category-front-content > span {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;
    letter-spacing: 2px;

    color: #e6b88e;
  }

  .categories .category-front-content h3 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: 36px;
    line-height: 1.05;

    color: #ffffff;
  }

  .categories .category-front-content small {
    display: inline-flex;
    margin-top: 14px;

    font-size: 12px;
    color: rgba(255,255,255,0.85);
  }

}


@media (max-width: 600px) {
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding: 115px 20px

      70px;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-overlay {
    background: linear-gradient(
        0deg,

        rgba(30, 18, 12, 0.96) 0%,

        rgba(30, 18, 12, 0.7) 50%,

        rgba(30, 18, 12, 0.3) 100%
      );
  }

  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
  }

  .hero .eyebrow::before {
    width: 25px;

  }

  .hero h1 {
    margin-top: 10px;
    font-size: clamp(45px, 14vw, 62px);
    line-height: 0.92;
  }

  .hero h1 em {
    margin-top: 7px;
  }

  .hero-content > p {
    margin-top: 13px;
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 30px;
  }

  .hero .btn-primary, .hero .btn-outline {
    width: 100%;
    padding: 15px 18px;
    text-align: center;
  }

  .bharathi-about-image {
    min-height: 420px;
  }

  .about-experience {
    top: auto;
    right: 15px;
    bottom: 15px;
    width: auto;
    padding: 17px 20px;
  }

  .about-experience strong {
    font-size: 38px;
  }

.about-image {
  width: 50%;
  height: 750px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  background: #f6f1eb;
}

.about-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  display: block;
}

  .about-image-shape {
    display: none;
  }

  .bharathi-about-content {
    padding: 65px 20px;
  }

  .about-subtitle {
    padding-left: 38px;
    font-size: 9px;
    line-height: 1.5;
  }

  .about-subtitle::before {
    width: 27px;
  }

  .about-title {
    font-size: clamp(
        45px,
        14vw,
        58px
      );
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-description {
    font-size: 13px;
  }

  .about-btn {
    width: 100%;
    justify-content: center;
  }

  .inner-header {
    height: 75px;
    padding: 0 20px;
  }

  .inner-logo {
    font-size: 23px;
  }

  .inner-header-btn {
    display: none;
  }

  .about-page-hero {
    min-height: 520px;
    align-items: flex-end;
    padding: 110px 20px
      65px;
  }

  .about-hero-content h1 {
    font-size: clamp(
        50px,
        15vw,
        67px
      );
  }

  .about-hero-content > p {
    font-size: 13px;
    line-height: 1.7;
  }

  .about-hero-small {
    font-size: 8px;
  }

  .sofa-showcase {
    padding: 75px 20px;
  }

  .sofa-content h1 {
    font-size: 50px;
  }

  .sofa-main-image {
    height: 420px;
  }

  .sofa-image-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 13px;
  }

  .sofa-image-label h3 {
    font-size: 19px;
  }

  .sofa-thumbnails {
    gap: 8px;
  }

  .sofa-thumb {
    height: 105px;
  }

  .sofa-thumb span {
    width: 24px;
    height: 24px;
    font-size: 11px;
    left: 7px;
    bottom: 7px;
  }

  .collection-hero {
    min-height: 600px;
    align-items: flex-end;
    padding: 120px 20px
      100px;
  }

  .collection-hero-bg {
    background-position: center;
  }

  .collection-hero-overlay {
    background: linear-gradient(
        0deg,

        rgba(31,18,12,0.97) 0%,

        rgba(31,18,12,0.76) 50%,

        rgba(31,18,12,0.35) 100%
      );
  }

  .collection-eyebrow {
    font-size: 8px;
    letter-spacing: 0.18em;
    margin-bottom: 17px;
  }

  .collection-eyebrow::before {
    width: 28px;
  }

  .collection-hero-content h1 {
    font-size: clamp(49px, 14vw, 65px);
    line-height: 0.92;
  }

  .collection-hero-content h1 em {
    margin-top: 8px;
  }

  .collection-hero-content > p {
    margin-top: 22px;
    font-size: 12px;
    line-height: 1.7;
  }

  .collection-breadcrumb {
    margin-top: 22px;
    font-size: 8px;
  }

  .collection-hero-bottom {
    left: 20px;
    right: 20px;
    bottom: 25px;
  }

  .collection-number {
    display: none;
  }

  .collection-scroll {
    display: flex;
    margin-left: auto;
  }

  .furniture-categories {
    padding: 55px 20px !important;
  }

  .furniture-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .furniture-category-card {
    width: 100%;
    min-width: 0;
    height: 260px !important;
  }

  .category-card-number {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 9px;
  }

  .category-card-content {
    padding: 15px 12px !important;
    transform: translateY(0) !important;
  }

  .category-card-content > span {
    font-size: 7px;
    letter-spacing: 1.2px;
  }

  .category-card-content h3 {
    margin-top: 5px;
    font-size: 21px !important;
    line-height: 1.05;
  }

  /* Hide extra content to keep cards compact */
  .category-card-content p,
  .category-card-link {
    display: none;
  }

  .category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .furniture-category-card:focus .category-card-content,
  .furniture-category-card:active .category-card-content {
    transform: translateY(0) !important;
  }





  .about-values {
    padding: 60px 20px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .about-values-head {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }

  .about-values-head h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .about-values-head p {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-values-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;

    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;

    border-left: none;
  }

  .about-value-item {
    width: 100%;
    max-width: 100%;

    padding: 32px 0;
    margin: 0;

    text-align: left;

    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.14);

    box-sizing: border-box;
  }

  .about-value-item:last-child {
    border-bottom: none;
  }

  .value-icon {
    margin: 0 0 18px;
  }

  .value-number {
    display: block;
    margin-bottom: 10px;
  }

  .about-value-item h3 {
    margin: 0 0 12px;

    font-size: 28px;
    line-height: 1.1;
  }

  .about-value-item p {
    width: 100%;
    max-width: 100%;

    margin: 0;

    font-size: 14px;
    line-height: 1.7;
  }

  .about-values-line::before,
  .about-values-line::after,
  .about-value-item::before,
  .about-value-item::after {
    display: none !important;
    content: none !important;
  }

  .about-values-line {
    border-left: none !important;
    border-right: none !important;
  }

  .about-value-item {
    border-left: none !important;
    border-right: none !important;
  }



  .about-values-line::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 54px;
    right: auto;
    width: 1px;
    height: auto;
    background: rgba(216,195,165,0.32);
  }

  .about-values-line::after {
    display: none;
  }

  .products-page-hero {
    min-height: 580px;
    align-items: flex-end;
    padding: 120px 20px
      80px;
  }

  .products-hero-content h1 {
    font-size: 52px;
  }

  .products-hero-bottom {
    display: none;
  }

  .product-gallery-section {
    padding: 75px 20px;
  }

  .gallery-heading h2 {
    font-size: 48px;
  }

  .gallery-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 7px;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
  }

  .furniture-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 370px;
    gap: 13px;
  }

  .gallery-large, .gallery-wide, .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-card-overlay {
    padding: 20px;
  }

  .gallery-card-overlay h3 {
    font-size: 25px;
  }

  .gallery-open {
    width: 40px;
    height: 40px;
  }

 .furniture-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: 230px !important;
    gap: 10px !important;
    align-items: stretch;
  }

  .gallery-card,
  .gallery-large,
  .gallery-wide,
  .gallery-tall,
  .gallery-card:nth-child(n) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;

    width: 100%;
    height: 230px !important;
    min-width: 0;

    margin: 0 !important;
    overflow: hidden;
    border-radius: 12px;
  }

  .gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .gallery-card-overlay {
    padding: 40px 11px 12px !important;
  }

  .gallery-card-overlay h3 {
    font-size: 17px !important;
  }

  .gallery-open {
    width: 30px !important;
    height: 30px !important;
    right: 9px;
    bottom: 9px;
  }

  .contact-page {
    padding: 120px 20px
      75px;
  }

  .contact-content h1 {
    font-size: 52px;
  }

  .contact-content > p {
    font-size: 12px;
  }

  .contact-glass-card {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .contact-glass-card h2 {
    font-size: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-card {
    max-width: 100%;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
  }
}






/* ==========================================
   BHARATHI LUXURY INTRO
========================================== */

.bharathi-intro {
  position: relative;

  min-height: 650px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 100px 8% 110px;

  background:
    linear-gradient(
      135deg,
      #fbf7f1 0%,
      #f4eadf 100%
    );

  overflow: hidden;
}


/* ==========================================
   BIG BACKGROUND WORD
========================================== */

.intro-word {
  position: absolute;

  left: 50%;
  bottom: -38px;

  transform: translateX(-50%);

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(120px, 17vw, 280px);

  font-weight: 600;

  letter-spacing: 12px;

  color: rgba(91, 55, 34, 0.035);

  white-space: nowrap;

  pointer-events: none;
}


/* ==========================================
   NUMBER
========================================== */

.intro-number {
  position: absolute;

  top: 55px;
  right: 7%;

  font-family: "Cormorant Garamond", serif;

  font-size: 25px;

  color: #9d6846;
}


.intro-number::after {
  content: "";

  display: inline-block;

  width: 55px;
  height: 1px;

  margin-left: 14px;
  margin-bottom: 7px;

  background: rgba(92, 59, 37, 0.4);
}


/* ==========================================
   TOP LABEL
========================================== */

.intro-top {
  position: relative;
  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 20px;

  margin-bottom: 40px;
}


.intro-line {
  width: 60px;
  height: 1px;

  background: #b5825f;
}


.intro-label {
  font-size: 10px;

  font-weight: 600;

  letter-spacing: 4px;

  color: #8e5c3c;
}


/* ==========================================
   TITLE
========================================== */

.intro-title {
  position: relative;

  z-index: 2;

  text-align: center;
}


.title-small {
  display: block;

  margin-bottom: 10px;

  font-family: "Cormorant Garamond", serif;

  font-size: 19px;

  font-style: italic;

  color: #9a7a65;
}


.intro-title h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(65px, 7vw, 115px);

  font-weight: 500;

  line-height: 0.85;

  letter-spacing: -3px;

  color: #281912;
}


.intro-title h2 em {
  font-weight: 400;

  color: #a66c45;

  font-style: italic;
}


/* ==========================================
   BOTTOM CONTENT
========================================== */

.intro-bottom {
  position: relative;

  z-index: 3;

  width: min(850px, 90%);

  margin: 65px auto 0;

  display: grid;

  grid-template-columns: 90px 1fr;

  align-items: flex-start;
}


/* QUOTE */

.intro-quote {
  font-family: Georgia, serif;

  font-size: 100px;

  line-height: 0.7;

  color: rgba(157, 104, 70, 0.18);
}


/* DESCRIPTION BLOCK */

.intro-description {
  padding-left: 35px;

  border-left: 1px solid rgba(104, 69, 47, 0.23);
}


.intro-description p {
  max-width: 680px;

  margin: 0 0 30px;

  font-size: 15px;

  line-height: 1.9;

  color: #6c5a50;
}


/* ==========================================
   DISCOVER LINK
========================================== */

.intro-discover {
  width: fit-content;

  display: flex;

  align-items: center;

  gap: 18px;

  text-decoration: none;

  color: #332117;
}


.intro-discover > span {
  position: relative;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.intro-discover > span::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 40%;

  height: 1px;

  background: #a86f4a;

  transition: 0.35s ease;
}


.discover-circle {
  width: 44px;
  height: 44px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(69, 42, 27, 0.35);

  border-radius: 50%;

  font-size: 15px;

  transition: 0.35s ease;
}


.intro-discover:hover > span::after {
  width: 100%;
}


.intro-discover:hover .discover-circle {
  background: #382219;

  color: white;

  border-color: #382219;

  transform: rotate(45deg);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

  .bharathi-intro {
    min-height: 600px;

    padding: 90px 6%;
  }


  .intro-title h2 {
    font-size: clamp(60px, 8vw, 90px);
  }


  .intro-bottom {
    margin-top: 55px;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

  .bharathi-intro {
    min-height: auto;

    padding: 80px 24px;
  }


  .intro-number {
    top: 30px;
    right: 24px;

    font-size: 19px;
  }


  .intro-number::after {
    width: 30px;
  }


  .intro-top {
    margin-bottom: 30px;
  }


  .intro-line {
    width: 30px;
  }


  .intro-label {
    font-size: 9px;

    letter-spacing: 2px;
  }


  .title-small {
    font-size: 16px;
  }


  .intro-title h2 {
    font-size: clamp(50px, 13vw, 70px);

    line-height: 0.92;

    letter-spacing: -1.5px;
  }


  .intro-bottom {
    width: 100%;

    margin-top: 50px;

    grid-template-columns: 1fr;
  }


  .intro-quote {
    font-size: 75px;

    height: 45px;
  }


  .intro-description {
    padding-left: 20px;

    margin-top: 15px;
  }


  .intro-description p {
    font-size: 14px;

    line-height: 1.8;
  }


  .intro-word {
    bottom: -10px;

    font-size: 100px;

    letter-spacing: 6px;
  }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

  .bharathi-intro {
    padding:
      80px
      20px
      85px;
  }


  .intro-top {
    justify-content: flex-start;
  }


  .intro-top .intro-line:last-child {
    display: none;
  }


  .intro-title {
    text-align: left;
  }


  .title-small {
    margin-bottom: 12px;
  }


  .intro-title h2 {
    font-size: 48px;

    line-height: 0.95;
  }


  .intro-title h2 em {
    display: inline;
  }


  .intro-bottom {
    margin-top: 45px;
  }


  .intro-quote {
    font-size: 65px;
  }


  .intro-description {
    padding-left: 16px;
  }


  .discover-circle {
    width: 40px;
    height: 40px;
  }


  .intro-word {
    font-size: 75px;
  }

}









.mission-vision-section {
  position: relative;
  padding: 120px 7%;
  overflow: hidden;
  background: linear-gradient(
      135deg,
      #f8f1e7,
      #eee0d0
    );
}

.mission-vision-section::before {
  content: "PURPOSE";
  position: absolute;
  right: -15px;
  top: 20px;
  font-family: "Cormorant Garamond",
    serif;
  font-size: clamp(
      100px,
      16vw,
      230px
    );
  font-weight: 700;
  color: rgba(
      76,
      47,
      29,
      0.035
    );
  pointer-events: none;
}

.mission-vision-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 65px;
}

.mission-vision-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #855c41;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.mission-vision-heading > span::before {
  content: "";
  width: 42px;
  height: 1px;
  background: #855c41;
}

.mission-vision-heading h2 {
  margin: 18px 0 22px;
  color: #312118;
  font-family: "Cormorant Garamond",
    serif;
  font-size: clamp(
      52px,
      6vw,
      82px
    );
  font-weight: 600;
  line-height: 0.95;
}

.mission-vision-heading h2 em {
  display: block;
  color: #936546;
  font-weight: 500;
  font-style: italic;
}

.mission-vision-heading p {
  max-width: 650px;
  color: #75675e;
  font-size: 14px;
  line-height: 1.9;
}

.mission-vision-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.mission-vision-card {
  position: relative;
  min-height: 520px;
  padding: 52px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.45s ease,
    box-shadow 0.45s ease;
}

.mission-card {
  color: #ffffff;
  background: linear-gradient(
      145deg,
      #2f1e14,
      #5a3b28
    );
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px
    rgba(
      52,
      32,
      20,
      0.16
    );
}

.mission-vision-icon {
  position: absolute;
  left: 52px;
  top: 50px;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.mission-vision-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.mission-card .mission-vision-icon {
  border: 1px solid
    rgba(
      255,
      255,
      255,
      0.22
    );
  color: #dfc1a2;
}

.vision-card .mission-vision-icon {
  border: 1px solid
    #b89577;
  color: #795139;
}

.mission-vision-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-family: "Cormorant Garamond",
    serif;
  font-size: 120px;
  line-height: 1;
}

.mission-card .mission-vision-number {
  color: rgba(
      255,
      255,
      255,
      0.045
    );
}

.vision-card .mission-vision-number {
  color: rgba(
      80,
      50,
      31,
      0.045
    );
}

.mission-vision-label {
  margin-bottom: 15px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.mission-card .mission-vision-label {
  color: #dfbd9d;
}

.vision-card .mission-vision-label {
  color: #93684b;
}

.mission-vision-card h3 {
  max-width: 560px;
  margin: 0 0 20px;
  font-family: "Cormorant Garamond",
    serif;
  font-size: clamp(
      36px,
      3.4vw,
      48px
    );
  font-weight: 600;
  line-height: 1;
}

.mission-vision-card p {
  max-width: 570px;
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
}

.mission-card p {
  color: rgba(
      255,
      255,
      255,
      0.66
    );
}

.vision-card p {
  color: #776961;
}

.mission-vision-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 27px;
}

.mission-vision-points span {
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.mission-card .mission-vision-points span {
  border: 1px solid
    rgba(
      255,
      255,
      255,
      0.16
    );
  color: #e8d3bf;
}

.vision-card .mission-vision-points span {
  border: 1px solid
    #d3bda7;
  color: #67452f;
  background: #f6eadc;
}

.mission-vision-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s ease,
    transform 0.85s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}

.mission-vision-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.vision-card {
  color: #302018;
  background: #fffaf3;
  border: 1px solid
    #d7c2ad;
  transition-delay: 0.12s;
}

@media ( max-width: 850px ) {
  .mission-vision-section {
    padding: 80px 22px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-card {
    min-height: 480px;
    padding: 38px 28px;
  }

  .mission-vision-icon {
    left: 28px;
    top: 32px;
  }

  .mission-vision-card h3 {
    font-size: 39px;
  }
}

.mission-vision-card.active-card {
  background: linear-gradient(
      145deg,
      #6f4a32,
      #3a2418
    );
  color: #ffffff;
  transform: translateY(-8px);
}

.vision-card.active-card {
  background: linear-gradient(
      145deg,
      #5a3c2b,
      #2f1e14
    );
  border-color: transparent;
}

.mission-vision-card.active-card .mission-vision-label {
  color: #e5c5a5;
}

.mission-vision-card.active-card h3 {
  color: #ffffff;
}

.mission-vision-card.active-card p {
  color: rgba(255,255,255,0.72);
}

.mission-vision-card.active-card .mission-vision-icon {
  color: #f0d4b6;
  border-color: rgba(255,255,255,0.25);
}

.mission-vision-card.active-card .mission-vision-points span {
  color: #f1ddca;
  border-color: rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.06);
}
/* =========================================================
   CONTACT PAGE HEADER
========================================================= */

.contact-header {
  position: relative;

  min-height: 650px;

  display: flex;
  align-items: center;

  padding:
    150px 7%
    100px;

  overflow: hidden;

  background: #2b1b14;
}


.contact-header-bg {
  position: absolute;
  inset: 0;

  background:
    url("./image/home.jpg")
    center / cover
    no-repeat;

  transform: scale(1.04);

  animation:
    contactHeaderZoom
    12s ease-in-out
    infinite alternate;
}


@keyframes contactHeaderZoom {

  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.10);
  }

}


.contact-header-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(35, 21, 14, 0.94) 0%,
      rgba(45, 28, 18, 0.78) 45%,
      rgba(45, 28, 18, 0.30) 100%
    );
}


/* LARGE BACKGROUND WORD */

.contact-header-decoration {
  position: absolute;

  right: -15px;
  bottom: -25px;

  color:
    rgba(
      255,
      255,
      255,
      0.045
    );

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(
      120px,
      18vw,
      270px
    );

  font-weight: 700;

  line-height: 0.8;

  pointer-events: none;
}


/* HEADER CONTENT */

.contact-header-content {
  position: relative;

  z-index: 3;

  max-width: 800px;
}


.contact-header-label {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 22px;

  color: white;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.24em;
}


.contact-header-label::before {
  content: "";

  width: 45px;
  height: 1px;

  background: #ddbb99;
}


.contact-header h1 {
  max-width: 780px;

  margin: 0;

  color: #ffffff;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(
      65px,
      7.8vw,
      110px
    );

  font-weight: 600;

  line-height: 0.87;

  letter-spacing: -0.025em;
}


.contact-header h1 em {
  display: block;

  color: #d7ae87;

  font-weight: 500;

  font-style: italic;
}


.contact-header-content > p {
  max-width: 610px;

  margin:
    30px 0 0;

  color:
    rgba(
      255,
      255,
      255,
      0.68
    );

  font-size: 14px;

  line-height: 1.9;
}


/* BREADCRUMB */

.contact-breadcrumb {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 35px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}


.contact-breadcrumb a {
  color:
    rgba(
      255,
      255,
      255,
      0.55
    );

  transition: color 0.3s ease;
}


.contact-breadcrumb a:hover {
  color: #ffffff;
}


.contact-breadcrumb span {
  color: #a97a58;
}


.contact-breadcrumb strong {
  color: #dcb996;
}


/* SCROLL */

.contact-header-scroll {
  position: absolute;

  z-index: 4;

  right: 7%;
  bottom: 45px;

  display: flex;

  align-items: center;

  gap: 15px;

  color: #ffffff;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.17em;
}


.contact-header-scroll i {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.35
    );

  border-radius: 50%;

  animation:
    contactArrow
    1.7s ease-in-out
    infinite;
}


@keyframes contactArrow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }

}


/* =========================================================
   SHOWROOM MAP
========================================================= */

.showroom-map-section {
  position: relative;

  padding:
    60px 7%;

  overflow: hidden;

  background: #f5eadc;
}


/* BACKGROUND DECORATION */

.showroom-map-section::after {
  content: "MADURAI";

  position: absolute;

  right: -10px;
  top: 25px;

  color:
    rgba(
      68,
      42,
      27,
      0.035
    );

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(
      100px,
      16vw,
      230px
    );

  font-weight: 700;

  line-height: 1;

  pointer-events: none;
}


/* =========================================================
   MAP HEADING
========================================================= */

.showroom-map-heading {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1fr 0.75fr;

  gap: 80px;

  align-items: end;

  margin-bottom: 55px;
}


.showroom-map-label {
  display: inline-flex;

  align-items: center;

  gap: 13px;

  margin-bottom: 15px;

  color: #8c6042;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.22em;
}


.showroom-map-label::before {
  content: "";

  width: 42px;
  height: 1px;

  background: #8c6042;
}


.showroom-map-heading h2 {
  margin: 0;

  color: #302018;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(
      55px,
      6.5vw,
      90px
    );

  font-weight: 600;

  line-height: 0.9;
}


.showroom-map-heading h2 em {
  display: block;

  color: #916346;

  font-weight: 500;

  font-style: italic;
}


.showroom-map-intro p {
  max-width: 520px;

  margin: 0;

  color: #74665d;

  font-size: 13px;

  line-height: 1.85;
}


.showroom-direction-link {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 20px;

  padding-bottom: 6px;

  border-bottom:
    1px solid #8c6042;

  color: #533625;

  font-size: 11px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}


.showroom-direction-link span {
  font-size: 17px;

  transition:
    transform 0.3s ease;
}


.showroom-direction-link:hover span {
  transform:
    translate(
      4px,
      -4px
    );
}


/* =========================================================
   MAP + DETAILS LAYOUT
========================================================= */

.showroom-map-layout {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1.35fr 0.65fr;

  min-height: 300px;
}


/* =========================================================
   MAP
========================================================= */

.showroom-map {
  position: relative;

  min-height: 500px;

  overflow: hidden;

  background: #d9c7b5;
}


.showroom-map iframe {
  width: 100%;
  height: 100%;

  min-height: 600px;

  display: block;

  border: 0;

  filter:
    sepia(18%)
    saturate(75%)
    contrast(95%);
}


.map-corner-label {
  position: absolute;

  left: 25px;
  bottom: 25px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    12px 18px;

  color: #ffffff;

  background:
    rgba(
      50,
      31,
      21,
      0.90
    );

  backdrop-filter:
    blur(10px);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}


.map-corner-label i {
  color: #d7ae87;
}


/* =========================================================
   SHOWROOM DETAILS
========================================================= */

.showroom-details {
  position: relative;

  padding:
    60px 48px;

  overflow: hidden;

  background: #352219;

  color: #ffffff;
}


.showroom-number {
  position: absolute;

  top: 10px;
  right: 20px;

  color:
    rgba(
      255,
      255,
      255,
      0.045
    );

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 130px;

  line-height: 1;
}


.showroom-small {
  display: block;

  margin-bottom: 18px;

  color: #d7ae87;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.22em;
}


.showroom-details h3 {
  max-width: 400px;

  margin:
    0 0 20px;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 48px;

  font-weight: 600;

  line-height: 0.95;
}


.showroom-details h3 em {
  display: block;

  color: #d7ae87;

  font-weight: 500;

  font-style: italic;
}


.showroom-description {
  margin:
    0 0 38px;

  color:
    rgba(
      255,
      255,
      255,
      0.62
    );

  font-size: 12px;

  line-height: 1.8;
}


/* INFO ROW */

.showroom-detail-row {
  display: grid;

  grid-template-columns:
    45px 1fr;

  gap: 15px;

  align-items: center;

  padding:
    20px 0;

  border-top:
    1px solid
    rgba(
      255,
      255,
      255,
      0.12
    );
}


.showroom-detail-row i {
  color: #d7ae87;

  font-size: 17px;
}


.showroom-detail-row span {
  display: block;

  margin-bottom: 5px;

  color:
    rgba(
      255,
      255,
      255,
      0.45
    );

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 0.16em;
}


.showroom-detail-row strong {
  color: #ffffff;

  font-size: 12px;

  font-weight: 500;
}


/* MAP BUTTON */

.showroom-map-button {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 32px;

  padding:
    17px 20px;

  color: #342219;

  background: #ead2b9;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}


.showroom-map-button:hover {
  background: #ffffff;

  transform:
    translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .contact-header {
    min-height: 580px;
  }


  .showroom-map-heading {
    grid-template-columns: 1fr;

    gap: 25px;
  }


  .showroom-map-layout {
    grid-template-columns: 1fr;
  }


  .showroom-map,
  .showroom-map iframe {
    min-height: 500px;
  }


  .showroom-details {
    padding:
      55px 45px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .contact-header {
    min-height: 570px;

    padding:
      130px 22px
      90px;
  }


  .contact-header h1 {
    font-size: 58px;
  }


  .contact-header-content > p {
    font-size: 13px;
  }


  .contact-header-scroll {
    display: none;
  }


  .showroom-map-section {
    padding:
      75px 22px;
  }


  .showroom-map-heading {
    margin-bottom: 35px;
  }


  .showroom-map-heading h2 {
    font-size: 54px;
  }


  .showroom-map,
  .showroom-map iframe {
    min-height: 420px;
  }


  .showroom-details {
    padding:
      45px 26px;
  }


  .showroom-details h3 {
    font-size: 42px;
  }


  .showroom-number {
    font-size: 95px;
  }

}
/* =========================================================
   SMALL SOCIAL MEDIA SECTION
========================================================= */

.contact-social-strip {
  position: relative;

  padding: 55px 7%;

  overflow: hidden;

  background: #3a261b;
}


/* DECORATIVE GLOW */

.contact-social-strip::before {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  right: -120px;
  top: -170px;

  border-radius: 50%;

  background:
    rgba(
      215,
      192,
      167,
      0.08
    );

  pointer-events: none;
}


.contact-social-strip-content {
  position: relative;

  z-index: 2;

  max-width: 1400px;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 60px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.contact-social-strip-text {
  max-width: 560px;
}


.contact-social-strip-text > span {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 10px;

  color: #d7b99b;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.22em;
}


.contact-social-strip-text > span::before {
  content: "";

  width: 35px;
  height: 1px;

  background: #d7b99b;
}


.contact-social-strip-text h2 {
  margin: 0;

  color: #ffffff;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 38px;

  font-weight: 600;

  line-height: 1;
}


.contact-social-strip-text h2 em {
  color: #d8b38e;

  font-weight: 500;

  font-style: italic;
}


.contact-social-strip-text p {
  margin-top: 10px;

  color:
    rgba(
      255,
      255,
      255,
      0.58
    );

  font-size: 12px;

  line-height: 1.7;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.contact-social-strip-icons {
  display: flex;

  align-items: center;

  gap: 12px;

  flex-wrap: wrap;
}


.contact-social-strip-icons a {
  min-width: 115px;

  padding:
    14px 17px;

  display: flex;

  align-items: center;

  gap: 10px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.16
    );

  color: #f3e5d7;

  background:
    rgba(
      255,
      255,
      255,
      0.035
    );

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


.contact-social-strip-icons a i {
  font-size: 18px;

  color: #d8b38e;
}


.contact-social-strip-icons a span {
  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.06em;
}


/* HOVER */

.contact-social-strip-icons a:hover {
  color: #342117;

  background: #ead2b9;

  border-color: #ead2b9;

  transform:
    translateY(-4px);
}


.contact-social-strip-icons a:hover i {
  color: #5a3c2b;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

  .contact-social-strip {
    padding:
      45px 22px;
  }


  .contact-social-strip-content {
    flex-direction: column;

    align-items: flex-start;

    gap: 30px;
  }


  .contact-social-strip-icons {
    width: 100%;
  }


  .contact-social-strip-icons a {
    flex:
      1 1
      calc(50% - 10px);

    justify-content: center;
  }

}


@media (max-width: 480px) {

  .contact-social-strip-text h2 {
    font-size: 34px;
  }


  .contact-social-strip-icons a {
    min-width: 0;

    flex:
      1 1 100%;
  }

}
/* =========================================================
   MOBILE HEADER + HAMBURGER
========================================================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;

  z-index: 1002;
}


.menu-toggle span {
  display: block;

  width: 23px;
  height: 2px;

  background: #ffffff;

  border-radius: 50px;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}


/* OPEN ICON */

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


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


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


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .header {
    height: 76px;

    padding:
      0 20px;

    position: fixed;

      background: rgba(58, 33, 23, 0.58);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

    display: flex;

    align-items: center;

    justify-content: space-between;
  }


  .logo {
    font-size: 24px;

    position: relative;

    z-index: 1002;
  }


  /* HIDE DESKTOP BUTTON */

  .header-btn {
    display: none;
  }


  /* SHOW HAMBURGER */

  .menu-toggle {
    display: flex;
  }


  /* MOBILE NAV */

  .nav {
    position: fixed;

    top: 0;
    right: -100%;

    width: min(
      320px,
      86%
    );

    height: 100dvh;

    padding:
      115px 28px
      40px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: flex-start;

    gap: 0;

    background:
      rgba(
        43,
        27,
        20,
        0.98
      );

    backdrop-filter:
      blur(18px);

    box-shadow:
      -20px 0 50px
      rgba(
        0,
        0,
        0,
        0.20
      );

    z-index: 1001;

    transition:
      right 0.45s
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      );
  }


  .nav.open {
    right: 0;
  }


  .nav a {
    width: 100%;

    padding:
      18px 0;

    border-bottom:
      1px solid
      rgba(
        255,
        255,
        255,
        0.10
      );

    color:
      rgba(
        255,
        255,
        255,
        0.74
      );

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.05em;
  }


  .nav a.active {
    color: #e2c3a3;
  }


  .nav a::after {
    display: none;
  }
 @media (max-width: 600px) {

  .featured {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .featured-image {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 20px;
    overflow: hidden;
  }

  .featured-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

}
@media (max-width: 700px) {

  /* ================================
     INTRO SECTION BOTTOM SPACE
  ================================= */

  .intro {
    position: relative;
     height: 450px;
    padding:
      80px 22px
      110px;

    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;

    z-index: 2;
  }


  /* ================================
     COLLECTION SECTION TOP SPACE
  ================================= */

  .categories {
    position: relative;

    margin-top: 28px;

    padding:
      70px 22px
      80px;

    border-top-left-radius: 34px;
    border-top-right-radius: 34px;

    background: #f7efe3;

    overflow: hidden;
  }


  /* OPTIONAL SHADOW BETWEEN SECTIONS */

  .categories::before {
    content: "";

    position: absolute;

    top: -18px;
    left: 8%;
    right: 8%;

    height: 28px;

    border-radius: 50%;

    background:
      rgba(
        74,
        44,
        28,
        0.07
      );

    filter: blur(18px);
  }


  /* HEADING SPACING */

  .categories .section-heading {
    margin-bottom: 35px;
  }


  .categories .section-heading h2 {
    margin-top: 10px;
  }


  .categories .section-heading p {
    margin-top: 18px;
  }

}
  /* =====================================================
     HERO MOBILE PADDING
  ===================================================== */

  .hero {
    padding:
      120px 20px
      65px;

    min-height: 100svh;
  }


  .hero-content {
    width: 100%;

    max-width: 100%;
  }


  .hero h1 {
    font-size:
      clamp(
        48px,
        13vw,
        62px
      );

    line-height: 0.94;
  }


  .hero-content > p {
    max-width: 100%;

    font-size: 13px;

    line-height: 1.75;
  }


  .hero-buttons {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 11px;
  }


  .hero .btn-primary,
  .hero .btn-outline {
    width: 100%;

    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
      14px 18px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .header {
    padding:
      0 18px;
  }


  .logo {
    font-size: 22px;
  }


  .menu-toggle {
    width: 40px;
    height: 40px;
  }


  .hero {
    padding:
      115px 20px
      60px;
  }


  .hero h1 {
    font-size: 48px;
  }

}




/* =========================================================
   COMMON COLLECTION STYLES
========================================================= */

.signature-collection,
.material-section,
.lifestyle-section,
.inspiration-section {
  font-family: "Manrope", sans-serif;
}

.signature-eyebrow,
.material-eyebrow,
.inspiration-eyebrow,
.lifestyle-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 3px;

  color: #9d6745;

  text-transform: uppercase;
}

.signature-eyebrow::before,
.material-eyebrow::before,
.inspiration-eyebrow::before,
.lifestyle-heading > span::before {
  content: "";

  width: 38px;
  height: 1px;

  background: #9d6745;
}


/* =========================================================
   04 - SIGNATURE COLLECTION
========================================================= */

.signature-collection {
  position: relative;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;

  min-height: 760px;

  background: #281710;

  overflow: hidden;
}


/* IMAGE */

.signature-image {
  position: relative;

  min-height: 760px;

  overflow: hidden;
}


.signature-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(30, 17, 11, 0.05) 55%,
      rgba(30, 17, 11, 0.55) 100%
    );
}


.signature-image img {
  width: 100%;
  height: 100%;

  position: absolute;

  inset: 0;

  object-fit: cover;

  transition: transform 1.2s ease;
}


.signature-collection:hover
.signature-image img {
  transform: scale(1.035);
}


.signature-image-number {
  position: absolute;

  left: 55px;
  bottom: 40px;

  z-index: 2;

  font-family: "Cormorant Garamond", serif;

  font-size: 18px;

  letter-spacing: 3px;

  color: rgba(255,255,255,0.75);
}


/* CONTENT */

.signature-content {
  position: relative;

  display: flex;
  flex-direction: column;

  justify-content: center;

  padding: 90px 8%;

  color: #fff;
}


.signature-content::before {
  content: "SIGNATURE";

  position: absolute;

  top: 20px;
  right: -50px;

  font-family: "Cormorant Garamond", serif;

  font-size: 130px;
  font-weight: 600;

  color: rgba(255,255,255,0.025);

  pointer-events: none;
}


.signature-content .signature-eyebrow {
  color: #d5a67e;
}


.signature-content
.signature-eyebrow::before {
  background: #d5a67e;
}


.signature-content h2 {
  max-width: 600px;

  margin: 28px 0 28px;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(54px, 5vw, 82px);

  font-weight: 500;

  line-height: 0.95;

  letter-spacing: -2px;
}


.signature-content h2 em {
  display: block;

  margin-top: 7px;

  font-weight: 400;

  color: #d4a47e;
}


.signature-content > p {
  max-width: 530px;

  margin: 0;

  font-size: 14px;

  line-height: 1.9;

  color: rgba(255,255,255,0.62);
}


/* DETAILS */

.signature-details {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;

  margin: 42px 0;

  padding:
    30px 0;

  border-top:
    1px solid rgba(255,255,255,0.12);

  border-bottom:
    1px solid rgba(255,255,255,0.12);
}


.signature-details > div {
  display: flex;

  align-items: flex-start;

  gap: 12px;
}


.signature-details span {
  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 15px;

  color: #d2a278;
}


.signature-details p {
  margin: 0;

  font-size: 11px;

  line-height: 1.6;

  letter-spacing: 1px;

  color: rgba(255,255,255,0.72);

  text-transform: uppercase;
}


/* BUTTON */

.signature-btn {
  width: fit-content;

  display: flex;

  align-items: center;

  gap: 30px;

  padding: 17px 22px;

  background: #f4e9dc;

  color: #2d1b12;

  text-decoration: none;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  transition: .35s ease;
}


.signature-btn span {
  font-size: 17px;

  transition: transform .35s ease;
}


.signature-btn:hover {
  background: #b87850;

  color: #fff;
}


.signature-btn:hover span {
  transform: translateX(6px);
}


/* =========================================================
   05 - SHOP BY MATERIAL
========================================================= */

.material-section {
  position: relative;

  padding:
    120px
    7%;

  background: #f8f1e8;
}


.material-header {
  display: grid;

  grid-template-columns:
    1.1fr
    .9fr;

  gap: 100px;

  align-items: end;

  margin-bottom: 80px;
}


.material-header h2 {
  margin:
    22px
    0
    0;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: clamp(55px, 5.2vw, 86px);

  line-height: .95;

  font-weight: 500;

  color: #2c1b13;
}


.material-header h2 em {
  display: block;

  font-weight: 400;

  color: #a56d48;
}


.material-header > p {
  max-width: 500px;

  margin: 0;

  font-size: 14px;

  line-height: 1.9;

  color: #756257;
}


/* MATERIAL BODY */

.material-section {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(350px, .75fr);

  column-gap: 80px;
}


.material-header {
  grid-column:
    1 / -1;
}


.material-list {
  border-top:
    1px solid
    rgba(77,49,34,.2);
}


.material-item {
  display: grid;

  grid-template-columns:
    60px
    minmax(180px, .7fr)
    1fr
    50px;

  gap: 20px;

  align-items: center;

  min-height: 120px;

  border-bottom:
    1px solid
    rgba(77,49,34,.18);

  cursor: pointer;

  transition:
    padding .35s ease,
    background .35s ease;
}


.material-item:hover,
.material-item.active {
  padding-left: 20px;

  background:
    rgba(166,111,73,.055);
}


.material-number {
  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 17px;

  color: #ab7958;
}


.material-item h3 {
  margin: 0;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 31px;

  font-weight: 600;

  color: #302017;
}


.material-item p {
  margin: 0;

  font-size: 12px;

  line-height: 1.7;

  color: #806e63;
}


.material-arrow {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(72,46,31,.25);

  border-radius: 50%;

  font-size: 14px;

  color: #4f3425;

  transition: .35s ease;
}


.material-item:hover
.material-arrow,
.material-item.active
.material-arrow {
  background: #3b2418;

  border-color: #3b2418;

  color: #fff;

  transform: rotate(45deg);
}


/* MATERIAL IMAGE */
/* MATERIAL IMAGE */

.material-preview {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #f8f1e8;
}

.material-preview img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  /* padding: 20px; */

  transition:
    opacity 0.3s ease,
    transform 0.6s ease;
}


.material-preview:hover img {
  transform: scale(1.03);
}

.material-preview-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(32,17,10,.55),
      transparent 55%
    );
}


.material-preview > span {
  position: absolute;

  left: 30px;
  bottom: 27px;

  color: #fff;

  font-size: 9px;

  letter-spacing: 3px;
}


/* =========================================================
   06 - LIFESTYLE
========================================================= */

.lifestyle-section {
  padding:
    120px
    7%;

  background: #fffaf4;
}


.lifestyle-heading {
  max-width: 850px;

  margin-bottom: 70px;
}


.lifestyle-heading h2 {
  margin:
    22px
    0
    0;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: clamp(58px, 5.5vw, 90px);

  font-weight: 500;

  line-height: .94;

  color: #2d1c13;
}


.lifestyle-heading h2 em {
  display: block;

  color: #a56d48;

  font-weight: 400;
}


/* LAYOUT */

.lifestyle-layout {
  display: grid;

  grid-template-columns:
    1.15fr
    .85fr;

  gap: 28px;
}


.lifestyle-side {
  display: grid;

  grid-template-rows:
    1fr
    1fr;

  gap: 28px;
}


.lifestyle-card {
  position: relative;

  overflow: hidden;

  background: #e7dacb;
}


.lifestyle-main {
  min-height: 700px;
}


.lifestyle-small {
  min-height: 336px;
}


.lifestyle-image {
  position: absolute;

  inset: 0;
}


.lifestyle-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(32,17,10,.78),
      rgba(32,17,10,.05) 65%
    );
}


.lifestyle-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .8s
    cubic-bezier(.22,.61,.36,1);
}


.lifestyle-card:hover
.lifestyle-image img {
  transform: scale(1.05);
}


.lifestyle-content {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 2;

  padding: 40px;

  color: #fff;
}


.lifestyle-small
.lifestyle-content {
  padding: 28px;
}

.lifestyle-content > span {
  display: block;
}
@media ( max-width: 850px ) {
  
   .mission-vision-section {
    width: 100%;
    max-width: 100%;

    padding: 70px 24px !important;

    overflow: hidden;
  }


  /* SECTION HEADING */

  .mission-vision-heading {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin-bottom: 40px;
  }

  .mission-vision-heading h2 {
    width: 100%;
    max-width: 100%;

    font-size: clamp(38px, 10vw, 44px);
    line-height: 0.98;

    overflow-wrap: break-word;
  }

  .mission-vision-heading p {
    width: 100%;
    max-width: 100%;

    font-size: 13px;
    line-height: 1.75;
  }


  /* IMPORTANT GRID FIX */

  

 

   .mission-vision-grid {
    width: calc(100% - 24px);
    max-width: 330px;

    margin-left: auto;
    margin-right: auto;

    gap: 20px;
  }

  .mission-vision-card {
    width: 100% !important;

    min-height: 410px !important;

    padding:
      100px 22px
      26px !important;
  }

  .mission-vision-icon {
    left: 22px !important;
    top: 24px !important;

    width: 54px;
    height: 54px;
  }

  .mission-vision-icon svg {
    width: 23px;
    height: 23px;
  }

  .mission-vision-number {
    top: 13px;
    right: 12px;

    font-size: 75px;
  }

  .mission-vision-label {
    margin-bottom: 11px;

    font-size: 8px;
  }

  .mission-vision-card h3 {
    margin-bottom: 14px;

    font-size: clamp(28px, 7.7vw, 32px) !important;
    line-height: 1.02;
  }

  .mission-vision-card p {
    font-size: 11px;
    line-height: 1.65;
  }

  .mission-vision-points {
    margin-top: 18px;
    gap: 6px;
  }

  .mission-vision-points span {
    padding: 6px 9px;

    font-size: 7px;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }


}


.lifestyle-content h3 {
  margin: 0 0 10px;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 44px;

  font-weight: 500;
}


.lifestyle-small
.lifestyle-content h3 {
  font-size: 30px;
}


.lifestyle-content p {
  max-width: 470px;

  margin: 0;

  font-size: 12px;

  line-height: 1.7;

  color: rgba(255,255,255,.72);
}


.lifestyle-content a {
  width: fit-content;

  display: flex;

  gap: 18px;

  align-items: center;

  margin-top: 25px;

  padding-bottom: 7px;

  border-bottom:
    1px solid
    rgba(255,255,255,.5);

  color: #fff;

  text-decoration: none;

  font-size: 10px;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


.lifestyle-content a i {
  font-style: normal;

  transition:
    transform .3s ease;
}


.lifestyle-content a:hover i {
  transform:
    translateX(6px);
}


/* =========================================================
   07 - INTERIOR INSPIRATION
========================================================= */

.inspiration-section {
  padding:
    120px
    7%
    130px;

  background: #f3e9dd;
}


.inspiration-head {
  display: grid;

  grid-template-columns:
    1.1fr
    .9fr;

  gap: 80px;

  align-items: end;

  margin-bottom: 70px;
}


.inspiration-head h2 {
  margin:
    20px
    0
    0;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: clamp(55px, 5vw, 84px);

  line-height: .95;

  font-weight: 500;

  color: #2e1c13;
}


.inspiration-head h2 em {
  display: block;

  color: #a66f49;

  font-weight: 400;
}


.inspiration-head > p {
  max-width: 480px;

  margin: 0;

  font-size: 14px;

  line-height: 1.9;

  color: #776458;
}


/* MOSAIC */

.inspiration-grid {
  height: 720px;

  display: grid;

  grid-template-columns:
    1.3fr
    .75fr
    .95fr;

  grid-template-rows:
    1fr
    1fr;

  gap: 16px;
}


.inspiration-item {
  position: relative;

  overflow: hidden;

  color: #fff;

  text-decoration: none;
}


.inspiration-large {
  grid-row:
    1 / 3;
}


.inspiration-bedroom {
  grid-column: 2;
  grid-row: 1;
}


.inspiration-dining {
  grid-column: 3;
  grid-row:
    1 / 3;
}


.inspiration-office {
  grid-column: 2;
  grid-row: 2;
}


.inspiration-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .8s
    cubic-bezier(.22,.61,.36,1);
}


.inspiration-item:hover img {
  transform:
    scale(1.06);
}


.inspiration-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(29,16,10,.78),
      transparent 60%
    );

  transition:
    background .4s ease;
}


.inspiration-item:hover
.inspiration-overlay {
  background:
    linear-gradient(
      to top,
      rgba(29,16,10,.88),
      rgba(29,16,10,.05) 70%
    );
}


.inspiration-content {
  position: absolute;

  z-index: 2;

  left: 30px;
  right: 30px;
  bottom: 30px;
}


.inspiration-content > span {
  display: block;

  margin-bottom: 8px;

  font-size: 9px;

  letter-spacing: 2px;

  color:
    rgba(255,255,255,.65);
}


.inspiration-content h3 {
  margin: 0;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 38px;

  font-weight: 500;
}


.inspiration-content p {
  margin:
    5px
    0
    0;

  font-size: 11px;

  color:
    rgba(255,255,255,.72);
}


.inspiration-content > div {
  width: fit-content;

  display: flex;

  gap: 20px;

  margin-top: 20px;

  font-size: 9px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  opacity: 0;

  transform:
    translateY(10px);

  transition: .35s ease;
}


.inspiration-content i {
  font-style: normal;
}


.inspiration-item:hover
.inspiration-content > div {
  opacity: 1;

  transform:
    translateY(0);
}


/* =========================================================
   RESPONSIVE 1100
========================================================= */

@media (max-width: 1100px) {

  .signature-collection {
    grid-template-columns:
      1fr
      1fr;
  }


  .signature-image,
  .signature-collection {
    min-height: 650px;
  }


  .signature-content {
    padding:
      70px
      45px;
  }


  .material-section {
    padding: 60px 20px;
    box-sizing: border-box;
  }

  .material-header {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }

  .material-list {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .material-item {
    width: 100%;
    box-sizing: border-box;

    padding-left: 0;
    padding-right: 0;
  }

  .material-preview {
    width: 100%;
    margin-top: 35px;
    box-sizing: border-box;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

  /* SIGNATURE */

  .signature-collection {
    display: block;
  }


  .signature-image {
    min-height: 520px;
  }


  .signature-content {
    padding:
      75px
      35px;
  }


  /* MATERIAL */

  .material-section {
    display: block;

    padding:
      90px
      35px;
  }


  .material-header,
  .inspiration-head {
    grid-template-columns: 1fr;

    gap: 25px;
  }


  .material-preview {
    margin-top: 45px;

    min-height: 450px;
  }


  /* LIFESTYLE */

  .lifestyle-section {
    padding:
      90px
      35px;
  }


  .lifestyle-layout {
    grid-template-columns: 1fr;
  }


  .lifestyle-main {
    min-height: 580px;
  }


  .lifestyle-side {
    grid-template-columns:
      1fr
      1fr;

    grid-template-rows: none;
  }


  .lifestyle-small {
    min-height: 400px;
  }


  /* INSPIRATION */

  .inspiration-section {
    padding:
      90px
      35px;
  }


  .inspiration-grid {
    height: auto;

    grid-template-columns:
      1fr
      1fr;

    grid-template-rows:
      500px
      350px
      350px;
  }


  .inspiration-large {
    grid-column:
      1 / 3;

    grid-row: 1;
  }


  .inspiration-bedroom {
    grid-column: 1;

    grid-row: 2;
  }


  .inspiration-office {
    grid-column: 2;

    grid-row: 2;
  }


  .inspiration-dining {
    grid-column:
      1 / 3;

    grid-row: 3;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .signature-content {
    padding:
      65px
      20px;
  }


  .signature-image {
    min-height: 420px;
  }


  .signature-image-number {
    left: 22px;
    bottom: 22px;
  }


  .signature-content h2 {
    font-size: 49px;

    letter-spacing: -1px;
  }


  .signature-details {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .signature-details > div {
    padding-bottom: 15px;

    border-bottom:
      1px solid
      rgba(255,255,255,.08);
  }


  /* MATERIAL */

  .material-section {
    padding:
      75px
      20px;
  }


  .material-header {
    margin-bottom: 50px;
  }


  .material-header h2,
  .lifestyle-heading h2,
  .inspiration-head h2 {
    font-size: 48px;
  }


  .material-item {
    grid-template-columns:
      35px
      1fr
      42px;

    min-height: 105px;

    gap: 12px;
  }


  .material-item p {
    display: none;
  }


  .material-item h3 {
    font-size: 26px;
  }


  .material-preview {
    min-height: 380px;
  }


  /* LIFESTYLE */

  .lifestyle-section {
    padding:
      75px
      20px;
  }


  .lifestyle-heading {
    margin-bottom: 45px;
  }


  .lifestyle-main {
    min-height: 500px;
  }


  .lifestyle-side {
    display: block;
  }


  .lifestyle-small {
    min-height: 420px;

    margin-top: 18px;
  }


  .lifestyle-content {
    padding: 25px;
  }


  .lifestyle-content h3 {
    font-size: 34px;
  }


  .lifestyle-small
  .lifestyle-content h3 {
    font-size: 30px;
  }


  /* INSPIRATION */

  .inspiration-section {
    padding:
      75px
      20px
      85px;
  }


  .inspiration-head {
    margin-bottom: 45px;
  }


  .inspiration-grid {
    display: block;
  }


  .inspiration-item {
    display: block;

    height: 420px;

    margin-bottom: 15px;
  }


  .inspiration-content {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }


  .inspiration-content h3 {
    font-size: 34px;
  }


  .inspiration-content > div {
    opacity: 1;

    transform: none;
  }

}



/* =========================================================
   08 - ANIMATED MARQUEE
========================================================= */

.collection-marquee {
  padding: 65px 0;
  overflow: hidden;

  background: #2c1a12;

  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}


.marquee-line {
  width: 100%;

  overflow: hidden;

  white-space: nowrap;
}


.marquee-line + .marquee-line {
  margin-top: 18px;
}


.marquee-track {
  width: max-content;

  display: flex;

  align-items: center;

  gap: 30px;

  animation:
    bharathiMarqueeLeft
    35s
    linear
    infinite;
}


.marquee-right .marquee-track {
  animation-name:
    bharathiMarqueeRight;

  animation-duration: 42s;
}


.marquee-track span {
  font-family:
    "Cormorant Garamond",
    serif;

  font-size: clamp(48px, 6vw, 95px);

  font-weight: 500;

  color: transparent;

  -webkit-text-stroke:
    1px
    rgba(255,255,255,.33);

  letter-spacing: 2px;
}


.marquee-line:first-child
.marquee-track span:nth-of-type(even) {
  color: #d3a47b;

  -webkit-text-stroke: 0;
}


.marquee-track i {
  font-style: normal;

  font-size: 18px;

  color: #b6754c;
}


@keyframes bharathiMarqueeLeft {

  from {
    transform: translateX(0);
  }

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

}


@keyframes bharathiMarqueeRight {

  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }

}



/* =========================================================
   09 - CINEMATIC COLLECTION
========================================================= */

.cinematic-collection {
  padding: 130px 7%;

  background: #f8f1e7;

  overflow: hidden;
}


/* HEADER */

.cinematic-title {
  max-width: 800px;

  margin-bottom: 110px;
}


.cinematic-title > span {
  display: flex;

  align-items: center;

  gap: 15px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;

  color: #a46b46;
}


.cinematic-title > span::before {
  content: "";

  width: 45px;
  height: 1px;

  background: #a46b46;
}


.cinematic-title h2 {
  margin: 25px 0 0;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: clamp(60px, 6vw, 95px);

  font-weight: 500;

  line-height: .92;

  letter-spacing: -2px;

  color: #2b1b13;
}


.cinematic-title h2 em {
  display: block;

  color: #a56d49;

  font-weight: 400;
}


/* ITEM */

.cinematic-item {
  display: grid;

  grid-template-columns:
    1.15fr
    .85fr;

  gap: 90px;

  align-items: center;

  margin-bottom: 150px;
}


.cinematic-item:last-child {
  margin-bottom: 0;
}


.cinematic-reverse {
  grid-template-columns:
    .85fr
    1.15fr;
}


.cinematic-reverse
.cinematic-image {
  order: 2;
}


.cinematic-reverse
.cinematic-copy {
  order: 1;
}


/* IMAGE */

.cinematic-image {
  position: relative;

  height: 500px;

  overflow: hidden;
}


.cinematic-image img {
  width: 90%;
  height: 100%;

  object-fit: cover;

  transform: translateY(-7%);

  transition:
    transform 1.2s
    cubic-bezier(.2,.7,.2,1);
}


.cinematic-image:hover img {
  transform:
    translateY(-7%)
    scale(1.045);
}


.cinematic-index {
  position: absolute;

  right: 22px;
  top: 20px;

  width: 65px;
  height: 65px;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    rgba(40,23,15,.85);

  backdrop-filter:
    blur(10px);

  color: white;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 21px;
}


/* TEXT */

.cinematic-copy {
  max-width: 560px;
}


.cinematic-small {
  font-size: 9px;

  font-weight: 700;

  letter-spacing: 3px;

  color: #a56d49;
}


.cinematic-copy h3 {
  margin:
    20px
    0
    28px;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: clamp(48px, 4.5vw, 72px);

  line-height: .95;

  font-weight: 500;

  color: #301f16;
}


.cinematic-copy h3 em {
  display: block;

  color: #a66e49;

  font-weight: 400;
}


.cinematic-copy p {
  max-width: 480px;

  margin-bottom: 35px;

  font-size: 14px;

  line-height: 1.9;

  color: #746156;
}


.cinematic-copy a {
  width: fit-content;

  display: flex;

  align-items: center;

  gap: 22px;

  color: #362117;

  text-decoration: none;

  text-transform: uppercase;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.cinematic-copy a span {
  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(70,42,26,.35);

  border-radius: 50%;

  transition: .35s ease;
}


.cinematic-copy a:hover span {
  background: #382218;

  color: white;

  transform: rotate(45deg);
}



/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;

  transition:
    opacity 1s ease,
    transform 1.1s
    cubic-bezier(.16,1,.3,1);
}


.reveal-up {
  transform:
    translateY(70px);
}


.reveal-left {
  transform:
    translateX(-90px);
}


.reveal-right {
  transform:
    translateX(90px);
}


.reveal-up.reveal-visible,
.reveal-left.reveal-visible,
.reveal-right.reveal-visible {
  opacity: 1;

  transform:
    translate(0,0);
}



/* =========================================================
   10 - SHOWROOM CINEMATIC
========================================================= */

.showroom-cinematic {
  position: relative;

  min-height: 820px;

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  text-align: center;

  color: white;
}


.showroom-bg {
  position: absolute;

  inset: -80px 0;
}


.showroom-bg img {
  width: 100%;
  height: 115%;

  object-fit: cover;

  transform: scale(1.08);
}


.showroom-dark {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      rgba(32,17,10,.62),
      rgba(32,17,10,.78)
    );
}


.showroom-content {
  position: relative;

  z-index: 3;

  max-width: 850px;

  padding: 50px 25px;
}
@media (max-width: 700px) {
  .contact-social-strip {
    width: 100%;
    padding: 45px 20px !important;
  }

  /* Heading first, icons underneath */
  .contact-social-strip-content {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 28px !important;
  }

  .contact-social-strip-text {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-social-strip-text h2 {
    width: 100%;
    margin: 12px 0 14px;
    font-size: 34px !important;
    line-height: 1;
  }

  .contact-social-strip-text p {
    width: 100%;
    max-width: 100%;
    font-size: 12px;
    line-height: 1.7;
  }

  /* Two social icons in each row */
  .contact-social-strip-icons {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .contact-social-strip-icons a {
    width: 100% !important;
    min-width: 0 !important;
    height: 58px;
    padding: 10px 6px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;

    flex: none !important;
  }

  .contact-social-strip-icons a i {
    flex-shrink: 0;
    font-size: 17px;
  }

  .contact-social-strip-icons a span {
    font-size: 9px;
    white-space: nowrap;
  }

}


.showroom-content > span {
  font-size: 10px;

  font-weight: 700;

  letter-spacing: 4px;

  color: #e0b38e;
}


.showroom-content h2 {
  margin:
    27px
    0;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: clamp(65px, 7vw, 110px);

  font-weight: 500;

  line-height: .88;

  letter-spacing: -3px;
}


.showroom-content h2 em {
  display: block;

  color: #ddb28f;

  font-weight: 400;
}


.showroom-content p {
  max-width: 580px;

  margin:
    0 auto
    38px;

  line-height: 1.9;

  color:
    rgba(255,255,255,.72);
}


.showroom-content a {
  width: fit-content;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 28px;

  padding:
    18px
    25px;

  background: #f5eadf;

  color: #352117;

  text-decoration: none;

  text-transform: uppercase;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;

  transition: .35s;
}


.showroom-content a i {
  font-style: normal;

  font-size: 17px;

  transition:
    transform .35s;
}


.showroom-content a:hover {
  background: #ad724c;

  color: white;
}


.showroom-content a:hover i {
  transform:
    translateX(7px);
}



/* LARGE FADED MOVING WORD */

.showroom-scroll-text {
  position: absolute;

  z-index: 2;

  bottom: -35px;

  left: 0;

  white-space: nowrap;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: clamp(80px, 12vw, 190px);

  color:
    rgba(255,255,255,.055);

  animation:
    showroomTextMove
    28s linear infinite;
}


@keyframes showroomTextMove {

  from {
    transform:
      translateX(100vw);
  }

  to {
    transform:
      translateX(-100%);
  }

}



/* SHOWROOM REVEAL */

.showroom-reveal {
  opacity: 0;

  transform:
    translateY(70px)
    scale(.96);

  transition:
    opacity 1.2s ease,
    transform 1.2s
    cubic-bezier(.16,1,.3,1);
}


.showroom-reveal.show {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}



/* =========================================================
   TABLET
========================================================= */

@media(max-width: 900px) {

  .cinematic-collection {
    padding:
      90px
      35px;
  }


  .cinematic-item,
  .cinematic-reverse {
    grid-template-columns: 1fr;

    gap: 45px;

    margin-bottom: 100px;
  }


  .cinematic-reverse
  .cinematic-image,
  .cinematic-reverse
  .cinematic-copy {
    order: initial;
  }


  .cinematic-image {
    height: 520px;
  }



  .showroom-cinematic {
    min-height: 700px;
  }

 


}



/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 600px) {

  .collection-marquee {
    padding:
      45px 0;
  }


  .marquee-track {
    gap: 20px;
  }


  .marquee-track span {
    font-size: 50px;
  }


  .cinematic-collection {
    padding:
      75px
      20px;
  }


  .cinematic-title {
    margin-bottom: 65px;
  }


  .cinematic-title h2 {
    font-size: 49px;
  }


  .cinematic-item {
    gap: 30px;

    margin-bottom: 80px;
  }


  .cinematic-image {
    height: 430px;
  }


  .cinematic-copy h3 {
    font-size: 43px;
  }


  .showroom-cinematic {
    min-height: 650px;
  }


  .showroom-content h2 {
    font-size: 53px;

    letter-spacing: -1px;
  }


  .showroom-content p {
    font-size: 13px;
  }

}



/* RESPECT REDUCED MOTION */

@media
(prefers-reduced-motion: reduce) {

  .marquee-track,
  .showroom-scroll-text {
    animation: none;
  }


  .reveal-up,
  .reveal-left,
  .reveal-right,
  .showroom-reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

}

/* =========================
   LOGO
========================= */

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  text-decoration: none;

  flex-shrink: 0;
}

.logo img {
  display: block;

  width: 190px;
  height: auto;

  object-fit: contain;
}


/* TABLET */

@media (max-width: 992px) {

  .logo img {
    width: 165px;
  }

}


/* MOBILE */

@media (max-width: 768px) {

  .header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo {
    margin: 0;
    padding: 0;
  }

  .logo img {
    width: 145px;
    max-height: 58px;

    object-fit: contain;
  }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

  .header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo img {
    width: 130px;
    max-height: 52px;
  }

}


.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  width: 60px;
  height: 60px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

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

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.3),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.3),
      0 0 0 12px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }
}


.bharathi-home-section {
  position: relative;
  padding: 120px 7%;

  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;

  background:
    linear-gradient(
      rgba(35, 20, 14, 0.78),
      rgba(35, 20, 14, 0.82)
    ),
    url("./image/about.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  color: #fff;
  overflow: hidden;
}

.bharathi-home-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.bharathi-home-heading > span {
  display: inline-block;
  margin-bottom: 20px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;

  color: #e1b991;
}

.bharathi-home-heading h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 5.4vw, 82px);
  line-height: .95;
  font-weight: 500;

  color: #fff;
}

.bharathi-home-heading h2 em {
  display: block;
  margin-top: 8px;

  color: #e0ae82;
  font-weight: 400;
}

.bharathi-home-heading p {
  max-width: 500px;

  margin-top: 28px;

  font-size: 14px;
  line-height: 1.9;

  color: rgba(255,255,255,.72);
}

.bharathi-home-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bharathi-home-card {
  position: relative;

  padding: 45px 45px 45px 110px;

  background: #fffaf5;

  border-bottom: 1px solid #d7c5b6;

  transition: .4s ease;
}

.bharathi-home-card:hover {
  transform: translateX(-10px);
  background: #2f1d15;
}

.bharathi-home-card {
  position: relative;

  padding: 45px 45px 45px 110px;

  background: rgba(255,255,255,.10);

  border: 1px solid rgba(255,255,255,.14);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: .4s ease;
}

.bharathi-home-card:hover {
  transform: translateX(-10px);

  background: rgba(255,255,255,.18);
}

.bharathi-home-card h3 {
  color: #fff;
}

.bharathi-home-card p {
  color: rgba(255,255,255,.68);
}

.bharathi-home-number {
  color: #e0ae82;
}
.bharathi-home-card:hover h3 {
  color: #fff;
}

.bharathi-home-card:hover p {
  color: rgba(255,255,255,.65);
}

.bharathi-home-card:hover .bharathi-home-number {
  color: #d8ad89;
}

@media (max-width: 850px) {

  .bharathi-home-section {
    grid-template-columns: 1fr;
    gap: 50px;

    padding: 80px 24px;
  }

  .bharathi-home-heading {
    position: relative;
    top: auto;
  }

  .bharathi-home-card {
    padding: 80px 25px 30px;
  }

  .bharathi-home-number {
    left: 25px;
    top: 25px;
  }

}
.cinematic-image {
  position: relative;
  height: 600px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cinematic-image img {
  width: 90%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  transform: none;

  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.cinematic-image:hover img {
  transform: scale(1.03);
}



.signature-image.signature-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  /* premium modern background */
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.08) 35%, transparent 60%),
    linear-gradient(135deg, #d9d0c6 0%, #cfc4b8 35%, #b8aa9d 70%, #9b8c80 100%);
}

.signature-image.signature-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  z-index: 1;
}

.signature-image.signature-slider::after {
  content: "";
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 45px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.08) 45%, transparent 75%);
  filter: blur(10px);
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.96);
  transition: all 0.9s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.slide img {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  max-width: 68%;
  max-height: 72%;

  width: auto;
  height: auto;

  object-fit: contain;

  display: block;

  filter: drop-shadow(0 25px 30px rgba(0,0,0,0.18));
}

/* dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  right: 32px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 28px;
  border-radius: 20px;
  background: #ffffff;
}

/* responsive */
@media (max-width: 992px) {
  .signature-image.signature-slider {
    min-height: 500px;
  }

  .slide img {
    max-width: 78%;
    max-height: 68%;
  }
}

@media (max-width: 576px) {
  .signature-image.signature-slider {
    min-height: 380px;
  }

  .slider-dots {
    right: 20px;
    bottom: 20px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 22px;
  }
}


/* ========================================
   APPLIANCE SHOWCASE
======================================== */

.appliance-showcase {
  min-height: 760px;

  display: grid;
  grid-template-columns: 55% 45%;

  overflow: hidden;

  background: #f4ede4;
}


/* ========================================
   LEFT PRODUCT AREA
======================================== */

.appliance-visual {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      #ffffff 0%,
      #f5eee5 47%,
      #e8d8c8 100%
    );
}


/* HUGE BACKGROUND WORD */

.appliance-bg-text {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  font-family: Georgia, serif;

  font-size: clamp(130px, 15vw, 230px);

  line-height: 1;

  color: rgba(105, 68, 48, 0.045);

  letter-spacing: -10px;

  user-select: none;
}


/* DECORATIVE GLOW */

.appliance-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(5px);

  pointer-events: none;
}


.glow-one {
  width: 420px;
  height: 420px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  background:
    rgba(255, 255, 255, 0.7);
}


.glow-two {
  width: 260px;
  height: 260px;

  right: 30px;
  top: 60px;

  border: 1px solid rgba(126, 85, 60, 0.13);

  background: transparent;
}


/* ========================================
   PRODUCT SLIDES
======================================== */

.appliance-products {
  position: relative;

  width: 100%;
  height: 600px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 3;
}


.appliance-product {
  position: absolute;

  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;

  visibility: hidden;

  transform:
    translateX(80px)
    scale(0.88);

  transition:
    opacity 0.8s ease,
    transform 1s cubic-bezier(.2,.8,.2,1),
    visibility 0.8s;
}


.appliance-product.active {
  opacity: 1;

  visibility: visible;

  transform:
    translateX(0)
    scale(1);
}


.appliance-product img {
  width: 78%;
  height: 500px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 30px 35px rgba(66, 41, 26, 0.18)
    );

  animation:
    applianceFloat 5s ease-in-out infinite;
}


/* FLOAT ANIMATION */

@keyframes applianceFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

}


/* CATEGORY LABEL */

.product-category {
  position: absolute;

  left: 60px;
  bottom: 45px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;

  color: #9b6547;
}


/* ========================================
   NUMBER
======================================== */

.appliance-number {
  position: absolute;

  top: 50px;
  left: 55px;

  z-index: 5;

  display: flex;
  align-items: baseline;
  gap: 8px;
}


.appliance-number span {
  font-family: Georgia, serif;

  font-size: 44px;

  color: #40271b;
}


.appliance-number small {
  font-size: 12px;

  color: #a28b7d;
}


/* ========================================
   CATEGORY DOTS
======================================== */

.appliance-dots {
  position: absolute;

  bottom: 45px;
  right: 50px;

  z-index: 10;

  display: flex;
  gap: 8px;
}


.appliance-dot {
  border: 1px solid #d8c6b7;

  background: transparent;

  padding: 10px 15px;

  font-size: 9px;

  letter-spacing: 1.5px;

  color: #765746;

  cursor: pointer;

  transition: 0.3s ease;
}


.appliance-dot:hover,
.appliance-dot.active {
  background: #5c3828;

  border-color: #5c3828;

  color: #ffffff;
}


/* ========================================
   RIGHT CONTENT
======================================== */

.appliance-content {
  padding: 80px 75px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #2c1810;

  color: #ffffff;
}


.appliance-eyebrow {
  position: relative;

  display: flex;
  align-items: center;

  gap: 16px;

  margin-bottom: 25px;

  font-size: 10px;

  letter-spacing: 4px;

  font-weight: 600;

  color: #d8a777;
}


.appliance-eyebrow::before {
  content: "";

  width: 38px;
  height: 1px;

  background: #d8a777;
}


.appliance-content h2 {
  margin: 0;

  font-family: Georgia, serif;

  font-size: clamp(50px, 5vw, 72px);

  line-height: 1;

  font-weight: 400;

  color: #ffffff;
}


.appliance-content h2 em {
  display: block;

  margin-top: 12px;

  font-weight: 400;

  color: #cf966d;
}


.appliance-description {
  max-width: 570px;

  margin: 36px 0 0;

  font-size: 14px;

  line-height: 1.9;

  color: #d6c6be;
}


/* ========================================
   FEATURES
======================================== */

.appliance-features {
  margin-top: 38px;

  border-top:
    1px solid rgba(255,255,255,0.12);
}


.appliance-feature {
  display: grid;

  grid-template-columns: 45px 1fr;

  gap: 15px;

  padding: 21px 0;

  border-bottom:
    1px solid rgba(255,255,255,0.12);

  transition:
    padding-left 0.35s ease,
    background 0.35s ease;
}


.appliance-feature:hover {
  padding-left: 10px;
}


.appliance-feature > span {
  padding-top: 4px;

  font-family: Georgia, serif;

  font-size: 11px;

  color: #d39a71;
}


.appliance-feature strong {
  display: block;

  margin-bottom: 6px;

  font-size: 13px;

  font-weight: 500;

  color: #ffffff;
}


.appliance-feature p {
  margin: 0;

  font-size: 11px;

  color: #a9968c;

  line-height: 1.6;
}


/* ========================================
   BUTTON
======================================== */

.appliance-btn {
  align-self: flex-start;

  margin-top: 38px;

  display: inline-flex;
  align-items: center;

  gap: 40px;

  padding: 18px 26px;

  background: #efe0d1;

  color: #321c12;

  text-decoration: none;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  transition: 0.35s ease;
}


.appliance-btn span {
  font-size: 17px;

  transition: transform 0.3s ease;
}


.appliance-btn:hover {
  background: #ffffff;
}


.appliance-btn:hover span {
  transform:
    translate(4px, -4px);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1050px) {

  .appliance-showcase {
    grid-template-columns: 1fr;
  }

  .appliance-visual {
    min-height: 650px;
  }

  .appliance-content {
    padding: 70px 50px;
  }

}


@media (max-width: 650px) {

  .appliance-visual {
    min-height: 500px;
  }

  .appliance-products {
    height: 430px;
  }

  .appliance-product img {
    width: 90%;
    height: 350px;
  }

  .appliance-number {
    top: 25px;
    left: 25px;
  }

  .appliance-dots {
    left: 25px;
    right: auto;
    bottom: 20px;
  }

  .appliance-dot {
    padding: 8px 10px;
  }

  .product-category {
    left: 25px;
    bottom: 75px;
  }

  .appliance-content {
    padding: 55px 25px;
  }

  .appliance-content h2 {
    font-size: 45px;
  }

}



.collection-categories {
  padding: 110px 6%;
  background: #f7f1ea;
}


/* HEADER */

.collection-categories-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;

  max-width: 1400px;
  margin: 0 auto 60px;
}


.collection-eyebrow {
  display: inline-block;

  margin-bottom: 18px;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 4px;

  color: #9c684a;
}


.collection-categories-header h2 {
  margin: 0;

  font-family: Georgia, serif;

  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.03;

  font-weight: 400;

  color: #2d1c15;
}


.collection-categories-header h2 em {
  display: block;

  margin-top: 6px;

  font-weight: 400;

  color: #976447;
}


.collection-categories-header > p {
  max-width: 520px;

  margin: 0 0 8px;

  font-size: 14px;
  line-height: 1.9;

  color: #786961;
}


/* GRID */

.collection-category-grid {
  max-width: 1400px;
  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  grid-auto-rows: 370px;

  gap: 16px;
}


/* CARDS */

.collection-category-card {
  position: relative;

  display: block;

  overflow: hidden;

  text-decoration: none;

  background: #2c1c15;
}


.category-large {
  grid-row: span 2;
}


.category-wide {
  grid-column: span 2;
}


/* IMAGE */

.collection-category-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform 1.2s cubic-bezier(.2,.7,.2,1),
    filter 0.6s ease;
}


.collection-category-card:hover img {
  transform: scale(1.07);

  filter: brightness(0.88);
}


/* OVERLAY */

.category-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(31, 17, 11, 0.88) 0%,
      rgba(31, 17, 11, 0.35) 42%,
      rgba(31, 17, 11, 0.05) 78%
    );

  transition: background 0.4s ease;
}


.collection-category-card:hover .category-overlay {
  background:
    linear-gradient(
      to top,
      rgba(31, 17, 11, 0.94) 0%,
      rgba(31, 17, 11, 0.42) 48%,
      rgba(31, 17, 11, 0.08) 100%
    );
}


/* NUMBER */

.category-number {
  position: absolute;

  top: 25px;
  left: 28px;

  z-index: 3;

  font-family: Georgia, serif;

  font-size: 13px;

  color: rgba(255,255,255,0.78);
}


/* CONTENT */

.category-content {
  position: absolute;

  left: 30px;
  right: 30px;
  bottom: 30px;

  z-index: 4;

  transform: translateY(16px);

  transition: transform 0.4s ease;
}


.collection-category-card:hover .category-content {
  transform: translateY(0);
}


.category-content > span {
  display: block;

  margin-bottom: 8px;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 3px;

  color: #e1ac80;
}


.category-content h3 {
  margin: 0;

  font-family: Georgia, serif;

  font-size: 33px;
  line-height: 1.05;

  font-weight: 400;

  color: #ffffff;
}


.category-content h3 em {
  display: block;

  font-weight: 400;

  color: #e6b58e;
}


/* LINK */

.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 190px;

  margin-top: 18px;

  padding-top: 14px;

  border-top:
    1px solid rgba(255,255,255,0.35);

  font-size: 10px;

  letter-spacing: 1px;

  color: #ffffff;

  opacity: 0;

  transform: translateY(10px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}


.collection-category-card:hover .category-link {
  opacity: 1;

  transform: translateY(0);
}


.category-link span {
  font-size: 17px;

  transition: transform 0.3s ease;
}


.collection-category-card:hover
.category-link span {
  transform:
    translate(4px, -4px);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .collection-categories-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .collection-category-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .category-wide {
    grid-column: span 2;
  }

}


@media (max-width: 650px) {

  .collection-categories {
    padding: 75px 20px;
  }

  .collection-category-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: 420px;
  }

  .category-large,
  .category-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .category-link {
    opacity: 1;
    transform: none;
  }

}




.collection-stage {
  padding: 110px 5% 120px;

  background:
    linear-gradient(
      135deg,
      #f4ede5 0%,
      #eee2d6 100%
    );

  overflow: hidden;
}


/* HEADER */

.collection-stage-head {
  max-width: 1400px;
  margin: 0 auto 60px;
}


.collection-stage-head > span {
  display: block;

  margin-bottom: 18px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 4px;

  color: #9b684a;
}


.collection-stage-head h2 {
  margin: 0;

  max-width: 760px;

  font-family: Georgia, serif;

  font-size: clamp(50px, 5vw, 76px);

  line-height: 1;

  font-weight: 400;

  color: #2b1912;
}


.collection-stage-head h2 em {
  display: block;

  margin-top: 8px;

  font-weight: 400;

  color: #9b6547;
}


/* MAIN LAYOUT */

.collection-stage-wrap {
  max-width: 1450px;
  margin: auto;

  min-height: 650px;

  display: grid;

  grid-template-columns:
    220px 1fr 330px;

  align-items: center;

  gap: 40px;
}


/* LEFT NAV */

.collection-stage-nav {
  display: flex;
  flex-direction: column;
}


.stage-nav-item {
  position: relative;

  display: flex;
  align-items: center;
  gap: 18px;

  width: 100%;

  padding: 20px 0;

  border: 0;
  border-bottom: 1px solid #d6c4b5;

  background: transparent;

  text-align: left;

  font-family: Georgia, serif;

  font-size: 17px;

  color: #8b786d;

  cursor: pointer;

  transition: 0.35s ease;
}


.stage-nav-item span {
  min-width: 25px;

  font-family: Arial, sans-serif;

  font-size: 9px;

  letter-spacing: 1px;

  color: #b07b5a;
}


.stage-nav-item::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -1px;

  width: 0;
  height: 1px;

  background: #593524;

  transition: width 0.4s ease;
}


.stage-nav-item:hover,
.stage-nav-item.active {
  padding-left: 12px;

  color: #2c1a13;
}


.stage-nav-item.active::after {
  width: 100%;
}


/* PRODUCT AREA */

.collection-stage-product {
  position: relative;

  min-height: 620px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.collection-stage-product::before {
  content: "";

  position: absolute;

  width: 470px;
  height: 470px;

  border-radius: 50%;

  background:
    rgba(255,255,255,.52);

  box-shadow:
    inset 0 0 0 1px rgba(124,85,61,.08);
}


/* BIG NUMBER */

.stage-big-number {
  position: absolute;

  left: 0;
  top: 50%;

  transform:
    translateY(-50%);

  font-family: Georgia, serif;

  font-size: 190px;

  line-height: 1;

  color:
    rgba(91,54,35,.045);

  z-index: 0;
}


/* PRODUCT SLIDES */

.stage-product-image {
  position: absolute;

  width: 88%;
  height: 520px;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;

  visibility: hidden;

  transform:
    translateY(50px)
    scale(.88)
    rotate(-2deg);

  transition:
    opacity .65s ease,
    transform .9s cubic-bezier(.2,.8,.2,1),
    visibility .65s;
}


.stage-product-image.active {
  opacity: 1;

  visibility: visible;

  transform:
    translateY(0)
    scale(1)
    rotate(0);
}


.stage-product-image img {
  width: 88%;
  height: 88%;

  object-fit: contain;

  position: relative;
  z-index: 3;

  filter:
    drop-shadow(
      0 35px 40px rgba(57,34,21,.20)
    );

  animation:
    stageFloat 5s ease-in-out infinite;
}


@keyframes stageFloat {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -15px;
  }

}


/* FLOOR SHADOW */

.stage-floor-shadow {
  position: absolute;

  width: 430px;
  height: 45px;

  bottom: 85px;

  border-radius: 50%;

  background:
    rgba(73,43,28,.16);

  filter: blur(18px);
}


/* RIGHT CONTENT */

.collection-stage-info {
  position: relative;

  padding-left: 40px;

  border-left:
    1px solid #d6c5b7;
}


.stage-category {
  display: block;

  margin-bottom: 18px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 3px;

  color: #a26a4c;
}


.stage-title {
  margin: 0;

  font-family: Georgia, serif;

  font-size: 45px;

  line-height: 1.05;

  font-weight: 400;

  color: #2b1912;
}


.stage-description {
  margin: 25px 0 0;

  font-size: 14px;
  line-height: 1.9;

  color: #76675e;
}


/* BUTTON */

.stage-btn {
  display: inline-flex;

  align-items: center;

  gap: 32px;

  margin-top: 35px;

  padding: 17px 22px;

  background: #563322;

  color: #fff;

  text-decoration: none;

  font-size: 10px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  transition: .35s ease;
}


.stage-btn span {
  font-size: 17px;

  transition:
    transform .3s ease;
}


.stage-btn:hover {
  background: #2c1a12;
}


.stage-btn:hover span {
  transform:
    translate(4px,-4px);
}


/* RESPONSIVE */

@media (max-width: 1050px) {

  .collection-stage-wrap {
    grid-template-columns: 1fr;
  }

  .collection-stage-nav {
    flex-direction: row;

    overflow-x: auto;
  }

  .stage-nav-item {
    min-width: 180px;

    padding-right: 20px;
  }

  .collection-stage-info {
    border-left: 0;

    border-top:
      1px solid #d6c5b7;

    padding:
      35px 0 0;
  }

}


@media (max-width: 650px) {

  .collection-stage {
    padding:
      80px 20px;
  }

  .collection-stage-product {
    min-height: 430px;
  }

  .collection-stage-product::before {
    width: 300px;
    height: 300px;
  }

  .stage-product-image {
    height: 350px;
  }

  .stage-big-number {
    font-size: 120px;
  }

  .stage-title {
    font-size: 38px;
  }

}




@media (max-width: 600px) {

  .signature {
    padding: 50px 18px;
    box-sizing: border-box;
  }

  .signature-content {
    padding: 0;
    margin-bottom: 28px;
  }

  .signature-content h2 {
    margin-top: 12px;
  }

  .signature-content p {
    margin-top: 16px;
    line-height: 1.7;
  }

  .signature-image {
    width: 100%;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .signature-slider {
    width: 100%;
  }

  .signature-slider .slide {
    width: 100%;
  }

  .signature-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

}