
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --sand: #e8d9c8;
      --warm-beige: #d9c8b4;
      --deep-sand: #c4aa8f;
      --terracotta: #a0674a;
      --rust: #8b4a2a;
      --dark: #2c2218;
      --olive-dark: #3a3a2e;
      --text-body: #4a3f35;
      --text-light: #7a6e65;
      --white: #faf7f3;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--white);
      color: var(--text-body);
      overflow-x: hidden !important;
    }

    /* ── NAVBAR ── */
    nav {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 40px;
    }
    nav {
  /* existing styles */
  transition: all 0.3s ease;
}

nav.scrolled {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}
nav.scrolled .nav-brand{ max-width: 100px;}

    .nav-left, .nav-right {
      display: flex; gap: 14px;
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #fff;
      font-weight: 400;
    }
    .nav-right img{ width: 42px;}
    .nav-left a, .nav-right a { color: #fff; text-decoration: none; opacity: 0.9; }
    .nav-left a:hover, .nav-right a:hover { opacity: 1; }
    .nav-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      max-width: 150px;
      transition: all 0.3s ease;
    }
    .nav-brand img{
        width: 100%;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      background: #3a2e25;
    }
    .hero::before{ position: absolute; content: ''; left: 0; right: 0; top: 0; height: 350px; background: linear-gradient(rgba(0,0,0,0.8), transparent); z-index: 1; }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, rgba(30,20,12,0.25) 0%, rgba(30,20,12,0.1) 60%, rgba(30,20,12,0.4) 100%),
        url('../images/banner.jpg') center/cover no-repeat;
    }
    /* Teal-weathered door texture overlay hint */
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(74,100,90,0.12) 0%, transparent 50%);
    }
    .hero-content {
      position: relative; z-index: 2;
      height: 100%;
      display: flex; align-items: flex-end; justify-content: center;
      padding-bottom: 60px;
      text-align: center;
    }

    /* ── WELCOME SECTION ── */
    .welcome {
      background: var(--sand);
      padding: 70px 40px 60px;
      text-align: center;
    }
    .welcome-eyebrow {
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 20px;
    }
    .welcome h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 400;
      color: var(--dark);
      line-height: 1.25;
      margin-bottom: 18px;
      font-size: 60px;
    }
    .welcome-body {
      font-size: 24px;
      line-height: 1.85;
      color: var(--text-light);
      max-width: 680px;
      margin: 0 auto 28px;
      font-weight: 300;
    }
    .btn-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--terracotta);
      text-decoration: none;
      border-bottom: 1px solid currentColor;
      padding-bottom: 2px;
    }
    .btn-link:hover { color: var(--rust); }
    .ornament {
      display: block;
      font-size: 22px;
      color: var(--deep-sand);
      margin-top: 30px;
      letter-spacing: 0.4em;
    }

    /* ── READYMADES BANNER ── */
    .readymades-header {
      background: #938a7f;
      padding: 80px 40px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
    }
    .readymades-header h3 {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 100px;
      font-weight: 300;
      color: #e2cab5;
      line-height: 1;
      flex-shrink: 0;
    }
    .readymades-header-right {
      max-width: 540px;
      font-size: 21px;
      line-height: 1.8;
      color: #e2cab5;
      padding-top: 10px;
      font-weight: 300;
    }
    .readymades-header-right strong {
      display: block;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-body);
      font-weight: 500;
      margin-bottom: 8px;
    }
    .shop-link {
      display: inline-block;
      margin-top: 14px;
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--terracotta);
      text-decoration: none;
    }

    /* ── READYMADES IMAGE ── */
    .readymades-img {
      width: 100%;
      height: 750px;
      overflow: hidden;
      position: relative;
    }
    .readymades-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top;
      filter: brightness(0.88) saturate(0.9);
      transition: transform 0.8s ease;
    }
    .readymades-img:hover img { transform: scale(1.03); }

    /* ── MARQUEE STRIP ── */
    .marquee-strip {
      background: var(--olive-dark);
      padding: 18px 0;
      overflow: hidden;
      position: relative;
    }
    .marquee-inner {
      display: flex;
      white-space: nowrap;
      animation: marquee 28s linear infinite;
    }
    .marquee-inner span {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 20px;
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.08em;
      padding: 0 30px;
    }
    .marquee-inner span.dot { color: var(--deep-sand); font-style: normal; padding: 0 8px; }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── COUNTER SECTION ── */
    .counter-section {
      position: relative;
      height: 420px;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .counter-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(rgba(40,35,28,0.68), rgba(40,35,28,0.68)),
        url('../images/img-2.jpg') center/cover fixed;
      filter: grayscale(40%);
    }
    .counter-content {
      position: relative; z-index: 2;
      text-align: center;
      color: #fff;
    }
    .counter-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      line-height: 1.3 !important;
      font-weight: 300;
      line-height: 1;
      color: rgba(255,255,255,0.92);
      display: block;
      max-width: 1100px;
      margin: auto;
    }
    .counter-text{
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      line-height: 1.3 !important;
      font-weight: 300;
      line-height: 1;
      color: rgba(255,255,255,0.92);
      display: block;
      max-width: 1100px;
      margin: auto;
    }
    .counter-label {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-top: 8px;
    }

    /* ── FIND YOUR MATCH ── */
    .find-match {
      background: var(--sand);
      padding: 64px 40px 50px;
      text-align: center;
    }
    .find-match h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 60px;
      font-weight: 400;
      color: var(--olive-dark);
      margin-bottom: 14px;
    }
    .find-match p {
      font-size: 24px;
      line-height: 1.85;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto 30px;
      font-weight: 300;
    }

    /* ── SCROLLING FABRIC TAGS ── */
    .fabric-scroll {
      background: var(--sand);
      padding: 0 0 10px;
      overflow: hidden;
    }
    .fabric-row {
      display: flex;
      gap: 0;
      white-space: nowrap;
      animation: scrollFabric 20s linear infinite;
    }
    .fabric-row span {
      font-size: 16px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-light);
      padding: 5px 18px;
      border-right: 1px solid var(--deep-sand);
    }
    @keyframes scrollFabric {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ── PRODUCT GRID ── */
    .product-section {
      background: var(--sand);
      padding: 30px 40px 60px;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }
    .product-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .product-card img {
      width: 100%;
      aspect-ratio: 2/3;
      object-fit: cover;
      object-position: bottom;
      transition: transform 0.6s ease;
      display: block;
    }
    .owl-dots{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 30px;
    }
    .owl-dot{
      width: 15px;
      height: 15px;
      border-radius: 100%;
      background: #000;
      opacity: 0.15;
      transition: all 0.2s ease-out;
    }
    .owl-dot.active{
      opacity: 0.8;
    }
    .product-card:hover img { transform: scale(1.02); }
    .product-info {
      padding: 18px 0;
    }
    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--dark);
      display: block;
    }
    .product-price {
      font-size: 11px;
      color: var(--text-light);
      letter-spacing: 0.08em;
      margin-top: 3px;
    }
    .product-tag {
      position: absolute;
      top: 12px; left: 12px;
      background: var(--terracotta);
      color: #fff;
      font-size: 9px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 3px 8px;
    }

    /* ── HANDLOOMS HEADING ── */
    .handlooms-heading {
      background: var(--sand);
      text-align: center;
      padding: 30px 40px 50px;
    }
    .handlooms-heading h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 8vw, 90px);
      font-weight: 400;
      color: var(--dark);
      letter-spacing: -0.01em;
      line-height: 1;
    }
    .handlooms-heading .underline-bar {
      display: inline-block;
      width: 80px;
      height: 2px;
      background: var(--terracotta);
      margin-top: 50px;
    }

    /* ── WHO WE ARE ── */
    .who-we-are {
      background: var(--warm-beige);
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 460px;
    }
    .who-img {
      overflow: hidden;
    }
    .who-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.92) saturate(0.85);
    }
    .who-text {
      padding: 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .who-text .eyebrow {
      font-size: 30px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 18px;
    }
    .who-text h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 90px;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 16px;
      line-height: 1;
    }
    .who-text p {
      font-size: 24px;
      line-height: 1.9;
      color: var(--text-light);
      font-weight: 300;
      margin-bottom: 24px;
    }
    .btn-terra {
      display: inline-block;
      background: var(--terracotta);
      color: #fff;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 11px 24px;
      text-decoration: none;
      align-self: flex-start;
    }
    .btn-terra:hover { background: var(--rust); }
    .who-sub-img {
      width: 140px;
      aspect-ratio: 3/4;
      object-fit: cover;
      margin-top: 20px;
      filter: saturate(1.1);
    }

    /* ── HERITAGE QUOTE ── */
    .heritage {
      background: var(--dark);
      padding: 80px 40px;
      text-align: center;
    }
    .heritage blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(17px, 2.5vw, 24px);
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255,255,255,0.82);
      max-width: 700px;
      margin: 0 auto;
      letter-spacing: 0.02em;
    }
    .heritage blockquote strong {
      color: var(--deep-sand);
      font-style: normal;
      font-weight: 400;
    }

    /* ── NEWSLETTER ── */
    .newsletter {
      position: relative;
      overflow: hidden;
      min-height: 380px;
    }
    .newsletter-bg {
      background:
        linear-gradient(rgba(30,22,14,0.72), rgba(30,22,14,0.72)),
        url('../images/img-2.jpg') center/cover fixed;
    }
    .newsletter-content {
      position: relative; z-index: 2;
      padding: 80px 40px;
    }
    .newsletter-content h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 400;
      color: #fff;
      margin-bottom: 10px;
    }
    .newsletter-content p {
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 24px;
      font-weight: 300;
      letter-spacing: 0.05em;
    }
    .newsletter-form {
      display: flex;
      gap: 0;
      max-width: 360px;
    }
    .newsletter-form input {
      flex: 1;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.3);
      border-right: none;
      padding: 12px 16px;
      color: #fff;
      font-size: 12px;
      font-family: 'Jost', sans-serif;
      outline: none;
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
    .newsletter-form button {
      background: var(--terracotta);
      border: none;
      padding: 12px 20px;
      color: #fff;
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: pointer;
      font-family: 'Jost', sans-serif;
    }
    .newsletter-form button:hover { background: var(--rust); }

    /* ── FOOTER ── */
    footer {
      background: var(--terracotta);
      padding: 50px 40px 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-col h5 {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 16px;
      font-weight: 500;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 9px; }
    .footer-col ul li a {
      font-size: 12.5px;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-weight: 300;
    }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p {
      font-size: 10.5px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.08em;
    }
    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
    }

    /* Fade-in animation */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: none;
    }

    @media (max-width: 768px) {
      nav { padding: 14px 20px; }
      .nav-left, .nav-right { display: none; }
      .readymades-header { flex-direction: column; padding: 30px 20px 10px; }
      .who-we-are { grid-template-columns: 1fr; }
      .who-img { height: 300px; }
      .product-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .welcome, .find-match { padding: 50px 20px 40px; }
      .who-text { padding: 40px 24px; }
      .heritage { padding: 60px 24px; }
    }


    .flip-container {
      font-size: 40px;
      font-weight: bold;
      height: 50px;
      overflow: hidden;
      position: relative;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      transform: scale(2.4);
    }

    .flip-text {
      position: absolute;
      width: 100%;
      text-align: center;
      transition: transform 0.5s ease-in-out;
    }

    .flip-text span {
      display: block;
      height: 50px;
      line-height: 50px;
    }

    @keyframes flip {
      0%   { transform: translateY(0); }
      20%  { transform: translateY(0); }

      25%  { transform: translateY(-50px); }
      45%  { transform: translateY(-50px); }

      50%  { transform: translateY(-100px); }
      70%  { transform: translateY(-100px); }

      75%  { transform: translateY(-150px); }
      95%  { transform: translateY(-150px); }

      100% { transform: translateY(0); }
    }

    footer{ float: left; width: 100%; background: var(--olive-dark) !important; padding-bottom: 0 !important; font-family: 'Jost', sans-serif !important;}
footer .nav-link{ color: #fff !important; padding: 5px 15px !important; text-transform: uppercase;}
footer .nav-link:hover{ color: #fff !important; text-decoration: underline !important;}
footer .logo{ max-width: 200px !important; margin: 0 auto 30px auto;}
footer .logo img{ width: 100%;}
footer a{ color: #fff !important; font-weight: 500;}
footer p{ color: #fff; font-size: 17px;}
.footer-bottom{ padding: 20px 0 !important;}
.footer-bottom p{ text-align: center; color: #fff !important; width: 100%; font-size: 17px; text-transform: uppercase;}
.social-icons a img{ width: 52px !important;}

.owl-stage-outer{ overflow: visible !important;}



/* Responsive Styles */
@media (max-width: 768px) {
  nav {
    padding: 14px 18px;
    justify-content: center;
    height: auto;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.4);
  }
  .nav-brand {
    max-width: 120px;
  }
  nav.scrolled{ height: 100px;}
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
  .hero::before {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .welcome {
    padding: 50px 20px 40px;
  }
  .welcome h2 {
    font-size: clamp(28px, 8vw, 36px);
  }
  .welcome-body,
  .find-match p {
    font-size: 16px;
    max-width: 100%;
    padding: 0 10px;
  }
  .find-match {
    padding: 50px 20px 40px;
  }
}

@media (max-width: 768px) {
  .readymades-header {
    flex-direction: column;
    padding: 30px 20px 20px;
    gap: 20px;
  }
  .readymades-header h3 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.05;
  }
  .readymades-header-right {
    max-width: 100%;
    font-size: 16px;
  }
  .readymades-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .product-section {
    padding: 30px 16px 50px;
  }
  .owl-carousel .item {
    padding: 0 8px;
  }
  .product-card {
    margin: 0 auto;
  }
  .product-name {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .who-we-are {
    display: block;
  }
  .who-img {
    height: 280px;
  }
  .who-text {
    padding: 30px 18px;
  }
  .who-text h3 {
    font-size: clamp(34px, 8vw, 48px);
  }
  .who-text p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .counter-section {
    height: auto;
    min-height: 280px;
    padding: 60px 20px;
  }
  .counter-bg {
    background-attachment: scroll;
  }
  .heritage {
    padding: 50px 20px;
  }
  .marquee-inner span,
  .fabric-row span {
    font-size: 11px;
    padding: 0 12px;
  }
  .readymades-header .d-flex{ flex-direction: column !important; align-items: flex-start !important;}
}

@media (max-width: 480px) {
  .welcome h2,
  .find-match h2 {
    font-size: clamp(26px, 9vw, 32px);
  }
  .readymades-header h3 {
    font-size: 32px;
  }
  .counter-number {
    font-size: clamp(60px, 18vw, 100px);
  }
  .footer-bottom p,
  footer p {
    font-size: 14px;
  }
  .flip-container {
    transform: scale(1.6);
  }
  footer{ padding: 15px !important;}
  footer .nav-link{ font-size: 13px; padding: 5px !important;}
}
.social-icons{ display: flex !important;}