﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background: #151515;
  color: #F5EBDD
}

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

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

/* NAVBAR */
:root {
  --ea-ticker-h: 0px;
  --ea-nav-h: 96px;
  --ea-ticker-duration: 85s
}

body.has-top-ticker {
  --ea-ticker-h: 40px;
  --ea-nav-h: calc(96px + var(--ea-ticker-h))
}

.ea-nav {
  position: fixed;
  top: var(--ea-ticker-h);
  left: 0;
  right: 0;
  z-index: 100;
  transition: padding .35s ease, background .35s ease, border-color .35s ease;
  padding: 20px 0;
  width: 100%
}

.ea-nav.scrolled {
  background: rgba(21, 21, 21, .97);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  border-bottom: 1px solid rgba(200, 169, 107, .2)
}

.nav-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  column-gap: 32px
}

.nav-left {
  justify-self: start
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important
}

.nav-logo-badge {
  position: relative;
  display: inline-block;
  line-height: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.nav-logo-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 248, 235, .2) 40%, rgba(200, 169, 107, .95) 50%, rgba(255, 248, 235, .25) 60%, transparent 72%);
  background-size: 280% 100%;
  animation: logo-shimmer-sweep 7.5s ease-in-out infinite;
  mix-blend-mode: screen;
  -webkit-mask-image: var(--nav-logo-mask);
  mask-image: var(--nav-logo-mask);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

@keyframes logo-shimmer-sweep {

  0%,
  14% {
    background-position: 220% center;
    opacity: 0
  }

  24% {
    opacity: 1
  }

  52% {
    background-position: -220% center;
    opacity: .9
  }

  66%,
  100% {
    background-position: -220% center;
    opacity: 0
  }
}

.nav-logo:hover .nav-logo-badge::after {
  animation-duration: 5.5s
}

.nav-logo img {
  position: relative;
  z-index: 1;
  display: block;
  height: clamp(52px, 7.5vw, 100px);
  width: auto;
  object-fit: contain;
  transition: height .35s ease;
  padding: 5px 5px 5px 5px;
  border-radius: 5px;
  background: #3b141d;
}

.ea-nav.scrolled .nav-logo img {
  height: clamp(40px, 5vw, 52px)
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  justify-self: end;
  flex-wrap: wrap
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(245, 235, 221, .85);
  transition: color .3s;
  text-decoration: none !important;
  white-space: nowrap
}

.nav-links a:hover {
  color: #C8A96B
}

.nav-links .nav-sub {
  display: none
}

.nav-cta {
  border: 1.5px solid #C8A96B;
  color: #C8A96B;
  padding: 10px 28px;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: all .3s;
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 5px
}

.nav-cta:hover {
  background: #C8A96B;
  color: #151515
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(200, 169, 107, .45);
  border-radius: 5px;
  background: rgba(21, 21, 21, .6);
  cursor: pointer;
  transition: border-color .25s, background .25s
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #C8A96B;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease
}

.nav-backdrop {
  display: none
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #4B0008;
  overflow: hidden;
  padding-top: calc(var(--ea-nav-h) + 12px)
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E")
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2
}

.hero-title,
.hero-video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.35rem, 7.8vw, 6.25rem);
  line-height: .9;
  color: #C8A96B;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-left: -4px;
}

.hero-sub,
.hero-video-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.2vw, 2.25rem);
  color: #F5EBDD;
  font-weight: 300;
  font-style: italic;
  margin-top: clamp(12px, 2vw, 24px);
  line-height: 1.2;
}

.hero-body {
  font-size: clamp(0.875rem, 1.05vw, 1.0625rem);
  color: rgba(245, 235, 221, .72);
  line-height: 1.75;
  font-weight: 300;
  margin-top: clamp(14px, 2vw, 24px);
  max-width: min(460px, 100%);
}

.hero-btns,
.hero-video-btns {
  display: flex;
  gap: 14px;
  margin-top: clamp(22px, 3.5vw, 44px);
  flex-wrap: wrap
}

.btn-gold {
  background: #C8A96B;
  color: #4B0008;
  padding: 16px 40px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 12px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  border-radius: 5px
}

.btn-gold:hover {
  background: #F5EBDD
}

.btn-outline {
  border: 1.5px solid #C8A96B;
  color: #C8A96B;
  padding: 16px 40px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 12px;
  background: transparent;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Inter', sans-serif
}

.btn-outline:hover {
  background: #C8A96B;
  color: #4B0008
}

.hero-founders {
  position: relative;
  height: 620px
}

.hero-mobile-slider {
  display: none
}

.hero-founders-desktop {
  position: relative;
  width: 100%;
  height: 100%
}

.founder-img-back {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 290px;
  height: 390px;
  z-index: 1;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .7)
}

.founder-img-back img,
.founder-img-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%)
}

.founder-img-front {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 250px;
  height: 330px;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .7)
}

.founder-label {
  position: absolute;
  bottom: 32px;
  right: 16px;
  z-index: 3;
  text-align: right
}

.founder-label span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: #C8A96B;
  letter-spacing: .1em;
  text-transform: uppercase
}

/* HERO — Main Owl Slider (home2) */
.hero--main-slider {
  min-height: 78vh;
  padding: 0;
  display: block;
  background: #4B0008
}

.hero--main-slider .ea-main-hero-owl,
.hero--main-slider .owl-stage-outer,
.hero--main-slider .owl-stage,
.hero--main-slider .owl-item,
.hero--main-slider .ea-hero-slide {
  height: 97vh;
  min-height: 480px;
  max-height: 820px
}

.ea-hero-slide {
  position: relative;
  overflow: hidden
}

.ea-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.04);
  transition: transform 6.5s linear;
}

.owl-item.active .ea-hero-slide-bg {
  transform: scale(1.12)
}

.ea-hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .22) 45%, rgba(0, 0, 0, .12) 100%);
}

.ea-hero-slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--ea-nav-h) + 40px) clamp(20px, 4vw, 48px) 80px;
  display: flex;
  align-items: center;
}

.ea-hero-align-left {
  justify-content: flex-start;
  text-align: left
}

.ea-hero-align-center {
  justify-content: center;
  text-align: center
}

.ea-hero-align-right {
  justify-content: flex-end;
  text-align: right
}

.ea-hero-slide-copy {
  max-width: 640px;
  width: 100%
}

.ea-hero-align-center .ea-hero-slide-copy {
  margin: 0 auto
}

.ea-hero-align-right .ea-hero-slide-copy {
  margin-left: auto
}

.ea-hero-slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: .95;
  color: #F5EBDD;
  font-weight: 500;
  margin: 0 0 22px;
  text-shadow: 1px 1px 1px #2a2a2a;
}

.ea-hero-slide-body {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: rgba(245, 235, 221, .92);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
  margin: 0;
  text-shadow: 1px 1px 1px #2a2a2a;
}

.ea-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #C8A96B;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 22px;
  text-shadow: 1px 1px 1px #2a2a2a;
}

.ea-hero-align-center .ea-hero-kicker {
  justify-content: center
}

.ea-hero-align-right .ea-hero-kicker {
  justify-content: flex-end;
  flex-direction: row-reverse
}

.ea-hero-kicker-line {
  width: 42px;
  height: 1px;
  background: #C8A96B;
  flex-shrink: 0
}

.ea-hero-align-center .ea-hero-slide-body {
  margin-left: auto;
  margin-right: auto
}

.ea-hero-align-right .ea-hero-slide-body {
  margin-left: auto
}

.ea-hero-slide-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.ea-hero-align-center .ea-hero-slide-btns {
  justify-content: center
}

.ea-hero-align-right .ea-hero-slide-btns {
  justify-content: flex-end
}

.ea-hero-slide-btns .btn-outline {
  border-color: rgba(200, 169, 107, .85);
  color: #F5EBDD
}

.ea-hero-slide-btns .btn-outline:hover {
  background: #C8A96B;
  color: #4B0008;
  border-color: #C8A96B
}

.hero--main-slider .owl-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4
}

.hero--main-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  margin: 0;
  background: transparent !important;
}

.hero--main-slider .owl-nav .owl-prev {
  left: clamp(10px, 2vw, 28px)
}

.hero--main-slider .owl-nav .owl-next {
  right: clamp(10px, 2vw, 28px)
}

.ea-hero-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 235, 221, .35);
  color: #F5EBDD;
  background: rgba(75, 0, 8, .35);
  backdrop-filter: blur(6px);
  transition: all .25s ease;
}

.hero--main-slider .owl-nav button:hover .ea-hero-nav {
  background: #C8A96B;
  color: #4B0008;
  border-color: #C8A96B;
}

.hero--main-slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  margin: 0 !important;
}

.hero--main-slider .owl-dots .owl-dot span {
  width: 28px;
  height: 3px;
  margin: 0;
  border-radius: 0;
  background: rgba(245, 235, 221, .3);
  transition: all .3s ease;
}

.hero--main-slider .owl-dots .owl-dot.active span,
.hero--main-slider .owl-dots .owl-dot:hover span {
  background: #C8A96B;
  width: 40px
}

@media (max-width:767px) {
  .hero--main-slider {
    min-height: 0;
    background: transparent
  }

  .hero--main-slider .ea-main-hero-owl,
  .hero--main-slider .owl-stage-outer,
  .hero--main-slider .owl-stage,
  .hero--main-slider .owl-item {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero--main-slider .ea-hero-slide {
    aspect-ratio: 4/5;
    height: auto;
    min-height: 0;
    max-height: none;
    width: 100%;
  }

  .hero--main-slider .owl-nav {
    display: none
  }

  .ea-hero-slide-bg {
    transform: none;
    background-size: cover;
    background-position: center center
  }

  .owl-item.active .ea-hero-slide-bg {
    transform: none
  }

  .ea-hero-slide-inner {
    padding: calc(var(--ea-nav-h) + 8px) clamp(16px, 5vw, 28px) 36px;
    align-items: flex-end;
  }

  .ea-hero-slide-title {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    line-height: 1.08;
    margin-bottom: 10px
  }

  .ea-hero-slide-body {
    font-size: .82rem;
    max-width: 100%;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
  }

  .ea-hero-kicker {
    font-size: 10px;
    margin-bottom: 8px;
    gap: 8px
  }

  .ea-hero-kicker-line {
    width: 22px
  }

  .ea-hero-slide-btns {
    margin-top: 12px;
    gap: 8px
  }

  .ea-hero-slide-btns .btn-gold,
  .ea-hero-slide-btns .btn-outline {
    padding: 9px 12px;
    font-size: 10px
  }

  .hero--main-slider .owl-dots {
    bottom: 10px
  }

  .hero--device-desktop {
    display: none !important
  }

  .hero--device-mobile {
    display: block
  }
}

@media (min-width:768px) {
  .hero--device-mobile {
    display: none !important
  }

  .hero--device-desktop {
    display: block
  }
}

/* Home banner (before Partner Stories) */
.home-banner-section {
  padding: 0;
  background: #fff
}

.home-banner-frame {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.home-banner-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 480px
}

@media (max-width:767px) {
  .home-banner-frame img {
    max-height: 220px
  }
}

/* Collections — same cards as main home (home-v2) */
.ea-collections-v2 {
  background: #ffffff;
  padding: 96px 0;
}

.ea-collections-v2 .ea-coll-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
  margin-bottom: 64px;
}

@media (min-width:768px) {
  .ea-collections-v2 .ea-coll-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end
  }
}

.ea-collections-v2 .ea-coll-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: #5c1f2e;
  margin: 0 0 16px;
}

@media (min-width:768px) {
  .ea-collections-v2 .ea-coll-h2 {
    font-size: 56px
  }
}

.ea-collections-v2 .ea-coll-lead {
  font-size: 18px;
  color: rgba(36, 20, 23, .7);
  max-width: 560px;
  font-weight: 300;
  margin: 0;
}

.ea-collections-v2 .ea-coll-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

@media (min-width:768px) {
  .ea-collections-v2 .ea-coll-actions {
    align-items: flex-end
  }
}

.ea-collections-v2 .ea-coll-nav {
  display: flex;
  gap: 10px
}

.ea-collections-v2 .ea-coll-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 5px;
  border: 1px solid #e7ddce;
  background: #fff;
  color: #5c1f2e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, transform .2s;
}

.ea-collections-v2 .ea-coll-nav-btn:hover {
  background: #5c1f2e;
  border-color: #5c1f2e;
  color: #fff;
  transform: translateY(-1px);
}

.ea-collections-v2 .ea-coll-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5c1f2e;
  border-bottom: 1px solid #5c1f2e;
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  text-decoration: none;
}

.ea-collections-v2 .ea-coll-link:hover {
  color: #bd9650;
  border-color: #bd9650
}

.ea-collections-v2 .ea-collections-owl {
  margin-bottom: 8px
}

.ea-collections-v2 .ea-collections-owl .owl-stage {
  display: flex;
  align-items: stretch
}

.ea-collections-v2 .ea-coll-slide {
  height: 100%
}

.ea-collections-v2 .collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px
}

@media (min-width:768px) {
  .ea-collections-v2 .collections-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
  }
}

.ea-collections-v2 .collection-card {
  cursor: pointer;
  color: inherit;
  display: block;
  text-decoration: none
}

.ea-collections-v2 .collection-card .img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 24px;
  background: #f3eee6
}

.ea-collections-v2 .collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  display: block
}

.ea-collections-v2 .collection-card:hover img {
  transform: scale(1.05)
}

.ea-collections-v2 .collection-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: #5c1f2e;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ea-collections-v2 .collection-card h3 svg {
  opacity: 0;
  transform: translateX(-12px);
  transition: all .3s ease;
  flex-shrink: 0
}

.ea-collections-v2 .collection-card:hover h3 svg {
  opacity: 1;
  transform: translateX(0)
}

.ea-collections-v2 .collection-card p {
  color: rgba(36, 20, 23, .7);
  font-weight: 300;
  margin: 0
}

.ea-collections-v2 .wholesale-banner {
  margin-top: 48px;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none
}

@media (min-width:768px) {
  .ea-collections-v2 .wholesale-banner {
    margin-top: 64px
  }
}

.ea-collections-v2 .wholesale-banner .img-wrap {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden
}

.ea-collections-v2 .wholesale-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  display: block
}

.ea-collections-v2 .wholesale-banner:hover img {
  transform: scale(1.05)
}

.ea-collections-v2 .wholesale-tint {
  position: absolute;
  inset: 0;
  background: rgba(92, 31, 46, .2);
  mix-blend-mode: multiply
}

.ea-collections-v2 .wholesale-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.ea-collections-v2 .wholesale-card-inner {
  background: rgba(251, 248, 242, .95);
  backdrop-filter: blur(4px);
  padding: 32px 40px;
  text-align: center;
  max-width: 480px;
  margin: 0 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: all .5s ease;
}

.ea-collections-v2 .wholesale-banner:hover .wholesale-card-inner {
  opacity: 1;
  transform: translateY(0)
}

.ea-collections-v2 .wholesale-card-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #5c1f2e;
  margin: 0 0 12px
}

.ea-collections-v2 .wholesale-card-inner p {
  font-size: 14px;
  color: rgba(36, 20, 23, .8);
  margin: 0 0 24px;
  font-weight: 300
}

.ea-collections-v2 .wholesale-card-inner .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid #5c1f2e;
  padding-bottom: 4px
}

@media (max-width:767px) {
  .ea-collections-v2 {
    padding: 64px var(--ea-m-pad, 20px);
    overflow-x: clip
  }

  .ea-collections-v2 .ea-coll-nav {
    display: none !important
  }

  .ea-collections-v2 .wholesale-banner .img-wrap {
    aspect-ratio: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
  }

  .ea-collections-v2 .wholesale-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .ea-collections-v2 .wholesale-tint {
    background: rgba(75, 0, 8, .62);
    mix-blend-mode: normal;
    z-index: 1;
  }

  .ea-collections-v2 .wholesale-card {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    padding: 0;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 2;
  }

  .ea-collections-v2 .wholesale-card-inner {
    opacity: 1;
    transform: none;
    padding: 20px 16px;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .ea-collections-v2 .wholesale-card-inner h3 {
    font-size: 22px;
    margin-bottom: 8px
  }

  .ea-collections-v2 .wholesale-card-inner p {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5
  }
}

/* HERO — YouTube background */
.hero--video {
  min-height: 100vh;
  padding-top: calc(var(--ea-nav-h) + 16px);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-video-copy {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  pointer-events: none;
}

.hero-video-align-left {
  justify-content: flex-start
}

.hero-video-align-left .hero-video-copy {
  text-align: left;
  margin-left: 0;
  margin-right: auto
}

.hero-video-align-left .hero-video-btns {
  justify-content: flex-start
}

.hero-video-align-center {
  justify-content: center
}

.hero-video-align-center .hero-video-copy {
  text-align: center;
  margin-left: auto;
  margin-right: auto
}

.hero-video-align-center .hero-video-btns {
  justify-content: center
}

.hero-video-align-right {
  justify-content: flex-end
}

.hero-video-align-right .hero-video-copy {
  text-align: right;
  margin-left: auto;
  margin-right: 0
}

.hero-video-align-right .hero-video-btns {
  justify-content: flex-end
}

.hero-video-copy a {
  pointer-events: auto
}

.hero-video-title,
.hero-video-sub {
  text-shadow: 0 2px 18px rgba(0, 0, 0, .65), 0 1px 4px rgba(0, 0, 0, .8)
}

.hero-video-btns .btn-gold {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .4)
}

/* HERO — static text alignment */
.hero-align-left .hero-copy {
  text-align: left
}

.hero-align-center .hero-inner {
  grid-template-columns: 1fr;
  text-align: center
}

.hero-align-center .hero-copy {
  text-align: center
}

.hero-align-center .hero-body {
  margin-left: auto;
  margin-right: auto
}

.hero-align-center .hero-btns {
  justify-content: center
}

.hero-align-center .hero-title {
  margin-left: 0
}

.hero-align-center .hero-founders {
  margin: 48px auto 0;
  max-width: 520px
}

.hero-align-right .hero-inner {
  grid-template-columns: 1fr 1fr
}

.hero-align-right .hero-copy {
  order: 2;
  text-align: right
}

.hero-align-right .hero-founders {
  order: 1
}

.hero-align-right .hero-body {
  margin-left: auto;
  margin-right: 0
}

.hero-align-right .hero-btns {
  justify-content: flex-end
}

.hero-align-right .hero-title {
  margin-left: 0;
  margin-right: -4px
}

/* TOP TICKER — fixed above navbar */
.ea-top-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: var(--ea-ticker-h);
  display: flex;
  align-items: stretch;
  background: linear-gradient(90deg, #320005 0%, #4B0008 22%, #5c0010 50%, #4B0008 78%, #320005 100%);
  border-bottom: 1px solid rgba(200, 169, 107, .45);
  overflow: hidden;
}

.ea-top-ticker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 5%, #C8A96B 35%, #F5EBDD 50%, #C8A96B 65%, transparent 95%);
}

.ea-top-ticker__shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 169, 107, .08) 50%, transparent 100%);
  animation: ea-ticker-shine 6s ease-in-out infinite;
}

@keyframes ea-ticker-shine {

  0%,
  100% {
    opacity: .35;
    transform: translateX(-30%)
  }

  50% {
    opacity: .9;
    transform: translateX(30%)
  }
}

.ea-top-ticker__badge--end {
  display: none
}

.ea-top-ticker__badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: rgba(0, 0, 0, .22);
  border-right: 1px solid rgba(200, 169, 107, .28);
  color: #C8A96B;
  z-index: 1;
}

.ea-top-ticker__gem {
  font-size: 9px;
  line-height: 1;
  opacity: .95
}

.ea-top-ticker__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F5EBDD;
  white-space: nowrap;
}

.ea-top-ticker__marquee {
  flex: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.ea-top-ticker__track {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  align-items: center;
  animation: ea-ticker-scroll var(--ea-ticker-duration) linear infinite;
  will-change: transform;
}

.ea-top-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 22px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(245, 235, 221, .9);
}

.ea-top-ticker__sep {
  color: #C8A96B;
  font-size: 8px;
  opacity: .85;
  line-height: 1
}

@keyframes ea-ticker-scroll {
  0% {
    transform: translate3d(0, 0, 0)
  }

  100% {
    transform: translate3d(-50%, 0, 0)
  }
}

.pillars-slider-track {
  display: contents
}

.pillar-card--dup {
  display: none !important
}

/* SECTIONS */
.section {
  padding: 120px 48px
}

.container {
  max-width: 1280px;
  margin: 0 auto
}

.gold-line {
  width: 48px;
  height: 3px;
  background: #C8A96B;
  margin-bottom: 36px
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #F5EBDD
}

.section h2,
.section h3,
.trust-bg h2,
.trust-bg h3,
.mfg-grid h2,
.map-grid h2 {
  color: #F5EBDD
}

.trust-bg .section-heading {
  color: #F5EBDD
}

.products-bg .section-heading {
  color: #F5EBDD
}

.section-body-text {
  font-size: 17px;
  color: rgba(245, 235, 221, .68);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}

.gold {
  color: #C8A96B
}

.italic-text {
  font-style: italic
}

/* ABOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-img-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(200, 169, 107, .3);
  pointer-events: none
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C8A96B;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid #C8A96B;
  padding-bottom: 4px;
  transition: all .3s;
  margin-top: 20px
}

.text-link:hover {
  color: #F5EBDD;
  border-color: #F5EBDD
}

/* PRODUCTS */
.products-bg {
  background: #4B0008
}

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

.section-center .section-heading {
  margin-bottom: 16px
}

.section-center p {
  font-size: 17px;
  color: rgba(245, 235, 221, .65);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto
}

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

.product-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: #0d0d0d;
  border-radius: 5px
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), opacity .5s, filter .5s;
  filter: grayscale(20%)
}

.product-card:hover img {
  transform: scale(1.06);
  opacity: 1;
  filter: grayscale(0)
}

.prod-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, .95) 0%, rgba(10, 10, 10, .2) 50%, transparent 100%)
}

.prod-footer {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end
}

.prod-name {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  color: #C8A96B;
  line-height: 1.1
}

.prod-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 169, 107, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A96B;
  font-size: 16px;
  transition: all .3s;
  flex-shrink: 0
}

.product-card:hover .prod-arrow {
  background: #C8A96B;
  color: #151515;
  border-color: #C8A96B
}

.ea-scroll-hint {
  display: none
}

/* MANUFACTURING */
.mfg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.mfg-img-wrap {
  position: relative;
}

.mfg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mfg-quote-box {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #3e2e01c7;
  color: #151515;
  padding: 36px;
  max-width: 320px;
  z-index: 123;
}

.mfg-quote-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px
}

.stat-item {
  border-left: 2px solid #C8A96B;
  padding: 6px 0 6px 24px
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: #C8A96B;
  line-height: 1.1
}

.stat-lbl {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 235, 221, .38);
  font-weight: 700;
  margin-top: 8px
}

/* FACTORY FLOOR */
.factory-section {
  position: relative;
  overflow: hidden;
  background: #0d0d0d
}

.factory-full-img {
  position: relative;
  height: 720px
}

.factory-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.55) contrast(1.05) saturate(.9)
}

.factory-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, .92) 0%, rgba(10, 10, 10, .55) 55%, rgba(10, 10, 10, .1) 100%)
}

.factory-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 80px
}

.factory-left {
  max-width: 520px
}

.factory-eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #C8A96B;
  margin-bottom: 20px;
  font-weight: 600
}

.factory-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.12;
  color: #F5EBDD;
  margin-bottom: 24px;
  overflow: visible
}

.factory-heading span {
  color: #C8A96B;
  font-style: italic;
  display: inline-block
}

.factory-desc {
  font-size: 16px;
  color: rgba(245, 235, 221, .65);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 440px
}

.factory-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(200, 169, 107, .2)
}

.factory-stat {
  padding: 24px 28px;
  border-right: 1px solid rgba(200, 169, 107, .2)
}

.factory-stat:nth-child(2n) {
  border-right: none
}

.factory-stat:nth-child(3),
.factory-stat:nth-child(4) {
  border-top: 1px solid rgba(200, 169, 107, .2)
}

.factory-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: #C8A96B;
  line-height: 1;
  margin-bottom: 6px
}

.factory-stat-lbl {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 235, 221, .38);
  font-weight: 600
}

.factory-bottom-strip {
  background: #C8A96B;
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.factory-strip-item {
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(75, 0, 8, .2)
}

.factory-strip-item:last-child {
  border-right: none
}

.factory-strip-icon {
  font-size: 22px;
  flex-shrink: 0
}

.factory-strip-text {
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 700;
  color: #4B0008;
  text-transform: uppercase;
  line-height: 1.4
}

/* WHY TRUST */
.trust-bg {
  background: #4B0008
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px
}

.trust-card {
  border: 1px solid rgba(200, 169, 107, .18);
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all .4s;
  background: rgba(21, 21, 21, .35)
}

.trust-card:hover {
  transform: translateY(-6px);
  background: rgba(200, 169, 107, .07);
  border-color: #C8A96B
}

.trust-icon {
  width: 44px;
  height: 44px;
  color: #C8A96B;
  margin-bottom: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.trust-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #F5EBDD;
  margin-bottom: 12px
}

.trust-card p {
  font-size: 13px;
  color: rgba(245, 235, 221, .5);
  font-weight: 300;
  line-height: 1.7
}

/* PILLARS SECTION */
.pillars-section {
  background: #4B0008;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 200px
}

.pillars-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none
}

.pillars-bg-word {
  position: absolute;
  top: auto;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(140px, 16vw, 300px);
  font-weight: 700;
  color: rgba(245, 235, 221, .04);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -.02em;
  user-select: none;
  z-index: 1;
  max-width: 100%;
  overflow: visible
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px
}

.pillar-portrait-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto
}

.pillar-portrait {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden
}

.pillar-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
  filter: grayscale(8%)
}

.pillar-card:hover .pillar-portrait img {
  transform: scale(1.04)
}

.pillar-portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(75, 0, 8, .85) 0%, rgba(75, 0, 8, .1) 50%, transparent 100%)
}

.pillar-corner-tl {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #C8A96B;
  border-left: 2px solid #C8A96B;
  pointer-events: none;
  transition: width .5s, height .5s
}

.pillar-corner-br {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid #C8A96B;
  border-right: 2px solid #C8A96B;
  pointer-events: none;
  transition: width .5s, height .5s
}

.pillar-card:hover .pillar-corner-tl,
.pillar-card:hover .pillar-corner-br {
  width: 60px;
  height: 60px
}

.pillar-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(200, 169, 107, .12);
  line-height: 1;
  pointer-events: none
}

.pillar-info {
  padding: 28px 12px 0;
  text-align: center;
  width: 100%
}

.pillar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 42px);
  color: #C8A96B;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 10px
}

.pillar-designation {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(245, 235, 221, .38);
  font-weight: 700;
  margin-bottom: 28px
}

.pillar-divider {
  width: 40px;
  height: 2px;
  background: #C8A96B;
  margin: 0 auto 28px
}

.pillar-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(245, 235, 221, .75);
  line-height: 1.65;
  max-width: 340px;
  margin: 0 auto 16px
}

.pillar-tag {
  display: inline-block;
  border: 1px solid rgba(200, 169, 107, .3);
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C8A96B;
  margin-top: 8px
}

@keyframes pillar-shimmer {
  0% {
    background-position: -200% center
  }

  100% {
    background-position: 200% center
  }
}

.pillar-name-shimmer {
  background: linear-gradient(90deg, #C8A96B 30%, #F5EBDD 50%, #C8A96B 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pillar-shimmer 4s linear infinite
}

/* LEADERSHIP */
.leader-section {
  background: #151515
}

.leader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto
}

.founder-card {
  cursor: pointer
}

.founder-offset {
  margin-top: 80px
}

.founder-portrait {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 32px
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease
}

.founder-card:hover .founder-portrait img {
  transform: scale(1.05)
}

.founder-frame {
  position: absolute;
  inset: 16px;
  border: 2px solid transparent;
  transition: border-color .5s;
  pointer-events: none
}

.founder-card:hover .founder-frame {
  border-color: #C8A96B
}

.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: #C8A96B;
  margin-bottom: 6px
}

.founder-title {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245, 235, 221, .38);
  font-weight: 700;
  margin-bottom: 16px
}

.founder-bio {
  font-size: 15px;
  color: rgba(245, 235, 221, .62);
  font-weight: 300;
  line-height: 1.75
}

/* MAP */
.map-bg {
  background: #4B0008
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.map-wrap {
  height: auto;
  min-height: 480px;
  display: flex;
  align-items: center
}

.india-map-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 12px 8px 40px
}

.india-map-wrap .india-map-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .35))
}

.india-map-wrap .india-state {
  fill: rgba(45, 0, 5, .72);
  stroke: rgba(200, 169, 107, .42);
  stroke-width: .6;
  cursor: pointer;
  transition: fill .22s ease, stroke .22s ease, filter .22s ease, transform .22s ease;
  transform-origin: center;
  transform-box: fill-box
}

.india-map-wrap .india-state.is-active {
  fill: rgba(75, 0, 8, .88);
  stroke: rgba(200, 169, 107, .55)
}

.india-map-wrap .india-state.is-hovered,
.india-map-wrap .india-state:focus-visible {
  fill: #C8A96B;
  stroke: #F5EBDD;
  stroke-width: 1;
  filter: drop-shadow(0 0 10px rgba(200, 169, 107, .55));
  transform: scale(1.015);
  outline: none
}

.india-map-tooltip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  padding: 8px 14px;
  text-align: center;
  background: rgba(21, 21, 21, .94);
  border: 1px solid rgba(200, 169, 107, .45);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35)
}

.india-map-tooltip.is-visible {
  opacity: 1;
  visibility: visible
}

.india-map-tooltip-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #F5EBDD;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .02em
}

.india-map-hint {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(245, 235, 221, .45);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity .2s ease
}

.india-map-wrap:has(.india-state.is-hovered) .india-map-hint {
  opacity: 0
}

.india-map-fallback {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 235, 221, .5);
  border: 1px dashed rgba(200, 169, 107, .25)
}

.map-wrap svg {
  width: 100%;
  height: 100%
}

@keyframes city-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.city-dot {
  fill: #C8A96B;
  animation: city-pulse 2.5s ease-in-out infinite
}

@keyframes draw-line {
  from {
    stroke-dashoffset: 300
  }

  to {
    stroke-dashoffset: 0
  }
}

.map-line {
  stroke: #C8A96B;
  stroke-width: 1;
  stroke-opacity: .3;
  stroke-dasharray: 6 4;
  stroke-dashoffset: 300;
  animation: draw-line 3s ease forwards
}

.city-lbl {
  fill: rgba(200, 169, 107, .8);
  font-size: 8.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: .04em
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #C8A96B;
  color: #C8A96B;
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  background: transparent;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Inter', sans-serif;
  margin-top: 36px
}

.map-btn:hover {
  background: #C8A96B;
  color: #4B0008
}

/* TESTIMONIALS */
.testi-bg {
  background: #151515
}

.testi-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none
}

.testi-scroll::-webkit-scrollbar {
  display: none
}

.testi-card {
  flex-shrink: 0;
  width: 300px;
  min-height: 360px;
  height: auto;
  background: #1e1e1e;
  border: 1px solid rgba(200, 169, 107, .15);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .3s
}

.testi-card:hover {
  border-color: rgba(200, 169, 107, .45)
}

.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: rgba(200, 169, 107, .12);
  line-height: 1;
  position: absolute;
  top: 8px;
  right: 22px
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: rgba(245, 235, 221, .88);
  line-height: 1.6;
  flex: 1;
  margin-top: 8px;
  z-index: 1;
  position: relative
}

.testi-text p {
  margin: 0 0 .6em
}

.testi-text p:last-child {
  margin-bottom: 0
}

.testi-text strong {
  color: #F5EBDD
}

.testi-text em {
  color: #C8A96B
}

.testi-footer {
  border-top: 1px solid rgba(245, 235, 221, .08);
  padding-top: 18px;
  margin-top: 20px
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px
}

.testi-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 107, .35);
  background: rgba(200, 169, 107, .08)
}

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

.testi-thumb-default {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200, 169, 107, .75);
  font-size: 22px;
  background: rgba(200, 169, 107, .1)
}

.testi-name {
  font-size: 13px;
  color: #C8A96B;
  font-weight: 600;
  letter-spacing: .05em
}

.testi-city {
  font-size: 11px;
  color: rgba(245, 235, 221, .38);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 4px
}

.testi-play {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A96B;
  transition: all .3s
}

.testi-card:hover .testi-play {
  background: #C8A96B;
  color: #151515;
  border-color: #C8A96B
}

/* Categories View All */
.section-cta {
  text-align: center;
  margin-top: 48px
}

/* Video reels — YouTube owl carousel */
.video-reels-section {
  background: #000;
  padding: 44px 0 52px;
  overflow: hidden;
  position: relative;
  z-index: 2
}

.video-reels-section .section-center {
  margin-bottom: 40px
}

.video-reels-section .section-center p {
  color: rgba(245, 235, 221, .65)
}

.video-reels-section .section-heading {
  color: #F5EBDD
}

.ea-reels-owl .owl-stage-outer {
  overflow: visible;
  padding: 16px 0 28px
}

.video-reel-item {
  padding: 0 6px
}

.yt-reel-embed,
.ig-reel-embed {
  position: relative;
  aspect-ratio: 9/16;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  max-height: min(74vh, 560px);
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .7);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), opacity .5s ease;
  border: 1px solid rgba(255, 255, 255, .08)
}

.yt-reel-embed iframe,
.ig-reel-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
  background: #000
}

.ea-reels-owl .owl-item:not(.center) .yt-reel-embed,
.ea-reels-owl .owl-item:not(.center) .ig-reel-embed {
  transform: scale(.86);
  opacity: .5
}

.ea-reels-owl .owl-item.center .yt-reel-embed,
.ea-reels-owl .owl-item.center .ig-reel-embed {
  transform: scale(1);
  opacity: 1;
  border-color: rgba(200, 169, 107, .4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .8), 0 0 0 1px rgba(200, 169, 107, .25)
}

/* Owl carousels — testimonials & blogs */
.testi-section {
  padding-bottom: 72px !important;
  overflow: hidden
}

.ea-testi-owl .owl-stage-outer {
  padding-top: 28px;
  padding-bottom: 8px
}

.ea-testi-owl .testi-owl-item {
  padding: 4px 0
}

.ea-testi-owl .testi-card {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  min-height: 300px
}

.ea-testi-owl .owl-dots,
.ea-blogs-owl .owl-dots {
  margin-top: 28px
}

.ea-testi-owl .owl-dot span,
.ea-blogs-owl .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px 5px;
  background: rgba(200, 169, 107, .28);
  transition: background .3s, transform .3s
}

.ea-testi-owl .owl-dot.active span,
.ea-blogs-owl .owl-dot.active span {
  background: #C8A96B;
  transform: scale(1.15)
}

/* Homepage blogs — modern overlay cards */
.hp-blogs-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
  padding-bottom: 96px
}

.hp-blog-item {
  padding: 6px 0
}

.hp-blog-card {
  display: block;
  height: 100%;
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden
}

.hp-blog-media {
  position: relative;
  aspect-ratio: auto;
  height: 400px;
  min-height: 400px;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(200, 169, 107, .12);
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease
}

.hp-blog-card:hover .hp-blog-media {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 107, .45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .45)
}

.hp-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1)
}

.hp-blog-card:hover .hp-blog-media img {
  transform: scale(1.08)
}

.hp-blog-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .45) 40%, rgba(0, 0, 0, .92) 100%);
  pointer-events: none
}

.hp-blog-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, .6);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px)
}

.hp-blog-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.hp-blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.2vw, 28px);
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .85), 0 4px 16px rgba(0, 0, 0, .55)
}

.hp-blog-excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, .88);
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .75)
}

.hp-blog-cta {
  align-self: flex-start;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4B0008;
  background: #C8A96B;
  font-size: 13px;
  margin-top: 4px;
  transition: transform .3s
}

.hp-blog-card:hover .hp-blog-cta {
  transform: translateX(4px)
}

/* Sitemap page */
.sitemap-section {
  background: #151515;
  padding: 64px 0 96px
}

.sitemap-container {
  max-width: 960px
}

.sitemap-xml-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  padding: 24px 28px;
  background: rgba(200, 169, 107, .08);
  border: 1px solid rgba(200, 169, 107, .28);
  border-radius: 8px;
}

.sitemap-xml-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: #C8A96B;
  margin: 0 0 6px
}

.sitemap-xml-desc {
  font-size: 14px;
  color: rgba(245, 235, 221, .55);
  margin: 0;
  font-weight: 300
}

.sitemap-xml-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1.5px solid #C8A96B;
  color: #C8A96B;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  border-radius: 5px;
}

.sitemap-xml-btn:hover {
  background: #C8A96B;
  color: #5c1f2e
}

.sitemap-group {
  margin-bottom: 40px
}

.sitemap-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #C8A96B;
  margin-bottom: 16px;
  letter-spacing: .08em;
  text-transform: uppercase
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px 20px
}

.sitemap-list a {
  display: block;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(200, 169, 107, .12);
  color: rgba(245, 235, 221, .75);
  font-size: 14px;
  transition: all .25s;
  text-decoration: none
}

.sitemap-list a:hover {
  color: #C8A96B;
  border-color: rgba(200, 169, 107, .45);
  background: rgba(200, 169, 107, .06)
}

.sitemap-empty {
  color: rgba(245, 235, 221, .5)
}

.theme-home2 .sitemap-section {
  background: #fff !important
}

.theme-home2 .sitemap-xml-bar {
  background: rgba(92, 31, 46, .04);
  border-color: #e7ddce
}

.theme-home2 .sitemap-xml-title {
  color: #5c1f2e
}

.theme-home2 .sitemap-xml-desc {
  color: rgba(36, 20, 23, .6)
}

.theme-home2 .sitemap-xml-btn {
  border-color: #5c1f2e;
  color: #5c1f2e
}

.theme-home2 .sitemap-xml-btn:hover {
  background: #5c1f2e;
  color: #fff
}

.theme-home2 .sitemap-group-title {
  color: #5c1f2e
}

.theme-home2 .sitemap-list a {
  background: #fbf8f2;
  border-color: #e7ddce;
  color: #241417
}

.theme-home2 .sitemap-list a:hover {
  color: #5c1f2e;
  border-color: #bd9650;
  background: #fff
}

.theme-home2 .footer-links a {
  color: rgba(251, 248, 242, .7) !important
}

.theme-home2 .footer-links a:hover {
  color: #bd9650 !important
}

.theme-home2 .footer-links a:hover .footer-link-icon {
  color: #bd9650
}

/* CATALOGUE CTA */
.catalogue-wrap {
  position: relative;
  padding: 160px 48px;
  overflow: hidden;
  background: #151515
}

.catalogue-bg-img {
  position: absolute;
  inset: 0
}

.catalogue-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .16
}

.catalogue-left-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #151515 45%, transparent)
}

.catalogue-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto
}

.catalogue-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  line-height: 1;
  margin-bottom: 52px;
  max-width: 740px;
  color: #F5EBDD
}

.catalogue-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

/* FINAL CTA */
.final-cta {
  padding: 120px 48px;
  text-align: center;
  background: linear-gradient(to bottom, #4B0008, #151515);
  border-top: 1px solid rgba(200, 169, 107, .15)
}

.final-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  max-width: 820px;
  margin: 0 auto 24px;
  line-height: 1.1;
  color: #F5EBDD
}

.final-sub {
  font-size: 18px;
  color: rgba(245, 235, 221, .6);
  font-weight: 300;
  margin-bottom: 48px
}

.final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.final-btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.final-btn-catalog i {
  font-size: 13px
}

/* Catalog download modal */
.ea-catalog-modal {
  background: #1a1a1a;
  color: #F5EBDD;
  border: 1px solid rgba(200, 169, 107, .28);
  border-radius: 5px
}

.ea-catalog-modal .modal-title {
  color: #C8A96B;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem
}

.ea-catalog-sub {
  font-size: 13px;
  color: rgba(245, 235, 221, .55)
}

.ea-catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 235, 221, .1)
}

.ea-catalog-select-all {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(245, 235, 221, .8);
  cursor: pointer;
  margin: 0
}

.ea-catalog-select-all input {
  accent-color: #C8A96B
}

.ea-catalog-count {
  font-size: 12px;
  color: #C8A96B;
  letter-spacing: .08em;
  text-transform: uppercase
}

.ea-catalog-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px
}

.ea-catalog-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin: 0;
  border: 1px solid rgba(200, 169, 107, .22);
  border-radius: 5px;
  background: #121212;
  cursor: pointer;
  transition: border-color .25s, background .25s
}

.ea-catalog-row:has(input:checked) {
  border-color: #C8A96B;
  background: #1a1612
}

.ea-catalog-row input {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  accent-color: #C8A96B;
  cursor: pointer
}

.ea-catalog-thumb {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(200, 169, 107, .28);
  flex-shrink: 0
}

.ea-catalog-row-name {
  font-size: 14px;
  font-weight: 500;
  color: #F5EBDD;
  line-height: 1.3
}

.ea-catalog-footer {
  display: flex;
  gap: 12px;
  width: 100%;
  padding-top: 8px
}

.ea-catalog-footer .ea-catalog-btn {
  flex: 1;
  min-height: 44px;
  padding: 12px 16px !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 5px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px
}

/* FOOTER */
.footer {
  background: #151515;
  padding: 80px 48px 40px;
  border-top: 4px solid #C8A96B
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px
}

.footer-logo-row img {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen
}

.footer-logo-row span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: .2em;
  color: #C8A96B;
  text-transform: uppercase;
  font-weight: 700
}

.footer-desc {
  font-size: 14px;
  color: rgba(245, 235, 221, .42);
  font-weight: 300;
  line-height: 1.85;
  max-width: 320px
}

.footer-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #C8A96B;
  margin-bottom: 24px
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0
}

.footer-links a {
  font-size: 14px;
  color: rgba(245, 235, 221, .6);
  font-weight: 300;
  transition: color .3s, gap .2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.footer-links a:hover {
  color: #C8A96B
}

.footer-link-icon {
  font-size: 11px;
  opacity: .85;
  flex-shrink: 0;
  transition: transform .2s ease, color .2s
}

.footer-links a:hover .footer-link-icon {
  transform: translateX(3px);
  color: #C8A96B
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(245, 235, 221, .6);
  font-weight: 300;
  line-height: 1.5
}

.contact-icon {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(200, 169, 107, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #C8A96B;
  flex-shrink: 0;
  margin-top: 1px
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(245, 235, 221, .08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(245, 235, 221, .32);
  font-weight: 300
}

.footer-bottom-links {
  display: flex;
  gap: 24px
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(245, 235, 221, .32);
  transition: color .3s
}

.footer-bottom-links a:hover {
  color: #C8A96B
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

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

.d1 {
  transition-delay: .12s
}

.d2 {
  transition-delay: .25s
}

.d3 {
  transition-delay: .4s
}

.d4 {
  transition-delay: .55s
}

svg text {
  dominant-baseline: middle
}

@media(max-width:1100px) {

  .hero-inner,
  .two-col,
  .mfg-grid,
  .map-grid {
    grid-template-columns: 1fr
  }

  .hero-founders {
    display: none
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust-cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .leader-grid {
    grid-template-columns: 1fr
  }

  .founder-offset {
    margin-top: 0
  }

  .section-heading {
    font-size: 54px
  }

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

  .catalogue-h {
    font-size: 64px
  }

  .final-h {
    font-size: 52px
  }

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

  .pillar-info {
    padding: 20px 8px 0
  }

  .pillar-name {
    font-size: clamp(24px, 2.8vw, 36px)
  }

  .factory-content {
    padding: 0 40px
  }

  .factory-heading {
    font-size: 52px
  }

  .india-map-wrap {
    max-width: 100%
  }

  .india-map-hint {
    font-size: 10px;
    bottom: 4px
  }
}

@media(max-width:640px) {
  .products-grid {
    grid-template-columns: 1fr
  }

  .trust-cards {
    grid-template-columns: 1fr
  }

  .section {
    padding: 80px 24px
  }

  .catalogue-wrap,
  .final-cta,
  .footer {
    padding-left: 24px;
    padding-right: 24px
  }

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

  .factory-bottom-strip {
    grid-template-columns: 1fr 1fr
  }

  .factory-strip-item:nth-child(2) {
    border-right: none
  }

  .factory-strip-item:nth-child(3) {
    border-top: 1px solid rgba(75, 0, 8, .2)
  }

  .factory-heading {
    font-size: 40px
  }
}

/* Breadcrumbs — below page title & subheading */
.ea-breadcrumbs--hero {
  justify-content: center;
  margin-top: 20px;
  font-size: 13px
}

.ea-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px
}

.ea-breadcrumbs a {
  color: #C8A96B;
  text-decoration: none;
  font-weight: 500
}

.ea-breadcrumbs a:hover {
  text-decoration: underline
}

.ea-bc-sep {
  color: rgba(245, 235, 221, .35)
}

.ea-bc-current {
  color: rgba(245, 235, 221, .7)
}

/* Footer social */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.footer-social--contact {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 235, 221, .1)
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A96B;
  text-decoration: none;
  font-size: 14px;
  transition: all .2s
}

.footer-social-link:hover {
  background: #C8A96B;
  color: #4B0008
}

.footer-contact-col .contact-item a {
  color: rgba(245, 235, 221, .6);
  text-decoration: none;
  transition: color .3s
}

.footer-contact-col .contact-item a:hover {
  color: #C8A96B
}

/* Inner pages */
.page-hero {
  padding: calc(var(--ea-nav-h) + 28px) 48px 36px;
  background: #151515;
  text-align: center
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: #F5EBDD;
  margin: 0
}

.page-hero p {
  color: rgba(245, 235, 221, .6);
  max-width: 640px;
  margin: 16px auto 0
}

.page-hero+.product-detail {
  padding-top: 0
}

.page-content {
  padding: 60px 48px;
  background: #151515;
  color: rgba(245, 235, 221, .8);
  line-height: 1.8
}

.page-content .container {
  max-width: 900px
}

.page-content h2 {
  color: #C8A96B;
  font-family: 'Cormorant Garamond', serif
}

.about-intro-section {
  background: #151515;
  padding: 72px 0 64px
}

.about-intro-wrap {
  max-width: 900px;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px)
}

.about-page-desc {
  font-size: 17px;
  line-height: 1.85
}

.about-page-desc p:last-child {
  margin-bottom: 0
}

.products-page {
  padding: 72px 0 96px;
  background: #151515
}

.collections-page .collections-grid {
  grid-template-columns: 1fr
}

@media (min-width:640px) {
  .collections-page .collections-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width:992px) {
  .collections-page .collections-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.collections-page .collection-card h3 {
  margin-bottom: 0
}

/* CONTACT PAGE */
.contact-page {
  background: #151515
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px
}

.contact-map-hero {
  position: relative;
  height: clamp(300px, 42vh, 500px);
  background: #0d0d0d;
  border-bottom: 1px solid rgba(200, 169, 107, .15)
}

.contact-map-hero iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%) contrast(1.04)
}

.contact-map-badge {
  position: absolute;
  bottom: 24px;
  left: 48px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(21, 21, 21, .92);
  border: 1px solid rgba(200, 169, 107, .35);
  border-radius: 5px;
  color: #F5EBDD;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(8px)
}

.contact-map-badge i {
  color: #C8A96B;
  font-size: 15px
}

.contact-page-body {
  padding: 0 0 100px
}

.contact-page-body--no-map {
  padding-top: 72px
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 64px
}

.contact-strip--overlap {
  margin-top: -56px;
  position: relative;
  z-index: 3
}

.contact-card {
  background: linear-gradient(145deg, #1c1c1c, #141414);
  border: 1px solid rgba(200, 169, 107, .22);
  border-radius: 5px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color .3s, transform .3s
}

.contact-card:hover {
  border-color: rgba(200, 169, 107, .45);
  transform: translateY(-3px)
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A96B;
  font-size: 16px
}

.contact-card--wa .contact-card-icon {
  color: #25D366;
  border-color: rgba(37, 211, 102, .4)
}

.contact-card-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C8A96B;
  font-weight: 600;
  margin-bottom: 8px
}

.contact-card-value {
  font-size: 14px;
  color: rgba(245, 235, 221, .75);
  line-height: 1.6;
  margin: 0;
  font-weight: 300
}

.contact-card-value a {
  color: rgba(245, 235, 221, .85);
  text-decoration: none;
  transition: color .25s
}

.contact-card-value a:hover {
  color: #C8A96B
}

.contact-wa-link {
  color: #25D366 !important;
  font-weight: 600
}

.contact-wa-link:hover {
  color: #5ae88a !important
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start
}

.contact-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F5EBDD;
  line-height: 1.15;
  margin: 0 0 24px
}

.contact-intro {
  color: rgba(245, 235, 221, .65);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 28px
}

.contact-intro p {
  margin-bottom: 1rem
}

.contact-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.contact-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(245, 235, 221, .7);
  font-weight: 300
}

.contact-highlights i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(200, 169, 107, .12);
  color: #C8A96B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0
}

.contact-wa-btn {
  padding: 14px 28px;
  font-size: 12px;
  text-decoration: none
}

.contact-form-panel {
  background: linear-gradient(160deg, #1e1e1e 0%, #161616 100%);
  border: 1px solid rgba(200, 169, 107, .2);
  border-radius: 5px;
  padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35)
}

.contact-form-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(245, 235, 221, .08)
}

.contact-form-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: #F5EBDD;
  margin: 0 0 8px
}

.contact-form-head p {
  font-size: 14px;
  color: rgba(245, 235, 221, .5);
  margin: 0;
  font-weight: 300
}

.contact-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 24px
}

.contact-alert--success {
  background: rgba(37, 211, 102, .1);
  border: 1px solid rgba(37, 211, 102, .3);
  color: #8ce8a8
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.contact-field label {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C8A96B;
  font-weight: 600;
  margin-bottom: 8px
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid rgba(245, 235, 221, .12);
  border-radius: 5px;
  color: #F5EBDD;
  padding: 14px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color .25s, box-shadow .25s
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(245, 235, 221, .28)
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(200, 169, 107, .55);
  box-shadow: 0 0 0 3px rgba(200, 169, 107, .1)
}

.contact-field textarea {
  resize: vertical;
  min-height: 130px
}

.contact-field-error {
  display: block;
  font-size: 12px;
  color: #f87171;
  margin-top: 6px
}

.contact-submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  margin-top: 4px
}

.contact-submit i {
  font-size: 13px
}

.products-page {
  padding: 60px 48px;
  background: #151515
}

.products-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px
}

.prod-list-card {
  background: #1a1a1a;
  border: 1px solid rgba(200, 169, 107, .18);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
  border-radius: 5px
}

.prod-list-card:hover {
  border-color: rgba(200, 169, 107, .45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35)
}

.prod-list-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
  border-radius: 5px 5px 0 0
}

.prod-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
  border-radius: 5px 5px 0 0
}

.prod-list-card:hover .prod-list-thumb img {
  transform: scale(1.07)
}

.prod-list-body {
  padding: 16px 16px 18px
}

.prod-list-title {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #C8A96B;
  line-height: 1.2;
  margin-bottom: 4px;
  text-decoration: none;
  transition: color .2s
}

.prod-list-title:hover {
  color: #F5EBDD
}

.prod-list-meta {
  font-size: 12px;
  color: rgba(245, 235, 221, .45);
  margin: 0 0 12px;
  letter-spacing: .04em
}

.prod-list-actions {
  display: flex;
  gap: 8px
}

.prod-list-actions .btn-prod {
  flex: 1;
  justify-content: center;
  padding: 9px 10px;
  font-size: 10px;
  letter-spacing: .1em;
  gap: 6px;
  min-height: 38px;
  border-radius: 5px
}

.btn-wa {
  background: #25D366;
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 5px
}

.btn-wa:hover {
  background: #1fb855;
  color: #fff
}

.product-detail {
  padding: calc(var(--ea-nav-h) + 20px) clamp(20px, 4vw, 48px) 80px;
  background: #151515;
}

.product-detail-wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%
}

.product-detail .ea-breadcrumbs--hero {
  margin: 0 0 28px
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  width: 100%;
}

.product-detail-grid>* {
  min-width: 0
}

/* PDP Gallery */
.pdp-gallery {
  width: 100%
}

.pdp-main {
  position: relative;
  width: 100%
}

.pdp-zoom-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3/4;
  background: #111;
  border: 1px solid rgba(200, 169, 107, .28);
  border-radius: 5px;
  overflow: hidden;
  cursor: crosshair;
  touch-action: manipulation;
}

.pdp-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .2s ease-out;
  will-change: transform;
}

.pdp-zoom-wrap.is-zoomed .pdp-main-img {
  transform: scale(2) !important;
  transform-origin: center center !important
}

.pdp-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245, 235, 221, .85);
  background: rgba(21, 21, 21, .78);
  border: 1px solid rgba(200, 169, 107, .35);
  border-radius: 5px;
  pointer-events: none;
}

.pdp-zoom-hint i {
  color: #C8A96B;
  font-size: 11px
}

.pdp-thumbs-viewport {
  margin-top: 14px;
  width: 100%
}

.pdp-thumbs-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%
}

.pdp-thumb {
  padding: 0;
  border: 2px solid rgba(200, 169, 107, .2);
  border-radius: 5px;
  background: #111;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s;
  aspect-ratio: 1;
  width: 100%;
}

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

.pdp-thumb:hover {
  border-color: rgba(200, 169, 107, .55)
}

.pdp-thumb.is-active {
  border-color: #C8A96B;
  box-shadow: 0 0 0 1px rgba(200, 169, 107, .4)
}

.pdp-thumbs-viewport--scroll {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.pdp-thumbs-track--scroll {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: pdp-thumbs-scroll 28s linear infinite;
  will-change: transform;
}

.pdp-thumbs-track--scroll:hover {
  animation-play-state: paused
}

.pdp-thumbs-track--scroll .pdp-thumb {
  flex: 0 0 88px;
  width: 88px;
  height: 88px
}

@keyframes pdp-thumbs-scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.pdp-info {
  width: 100%;
  color: rgba(245, 235, 221, .78)
}

.pdp-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #C8A96B;
  margin: 0 0 8px;
  font-weight: 600;
}

.pdp-subtitle {
  font-size: 15px;
  color: rgba(245, 235, 221, .55);
  font-style: italic;
  margin: 0 0 22px;
}

.pdp-meta {
  color: rgba(245, 235, 221, .6);
  margin: 0 0 24px;
  line-height: 1.9;
  font-size: 14px
}

.pdp-meta a {
  color: #C8A96B;
  text-decoration: none
}

.pdp-meta a:hover {
  color: #F5EBDD
}

.pdp-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 235, 221, .72);
  margin-bottom: 8px
}

.product-detail .btn-wa {
  padding: 12px 28px;
  font-size: 12px;
  border-radius: 5px
}

.product-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  width: 100%;
  max-width: 100%;
}

.product-detail-actions .btn-gold,
.product-detail-actions .btn-wa {
  padding: 14px 16px !important;
  font-size: 11px;
  letter-spacing: .1em;
  min-height: 48px;
  width: 100%;
  justify-content: center;
  border-radius: 5px;
  text-transform: uppercase
}

.products-grid-page .btn-gold.btn-prod {
  border-radius: 5px
}

.ea-pagination .pagination {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0
}

.ea-pagination .page-link {
  background: #1e1e1e;
  border-color: rgba(200, 169, 107, .25);
  color: #C8A96B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  line-height: 1;
  font-size: 14px
}

.ea-pagination .page-link svg,
.ea-pagination svg {
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0
}

.ea-pagination .page-item.active .page-link {
  background: #C8A96B;
  border-color: #C8A96B;
  color: #4B0008
}

.hero-btns a.btn-gold,
.hero-btns a.btn-outline {
  text-decoration: none
}

@media(max-width:1100px) {
  .contact-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .contact-main {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

@media(max-width:991px) {
  .product-detail {
    padding: calc(var(--ea-nav-h) + 12px) 0 48px
  }

  .product-detail-wrap {
    padding: 0 var(--ea-m-pad, 20px)
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .pdp-title {
    text-align: center
  }

  .pdp-subtitle {
    text-align: center;
    margin-bottom: 18px
  }

  .pdp-meta {
    text-align: center
  }

  .pdp-description {
    text-align: center
  }

  .product-detail-actions {
    max-width: 100%;
    grid-template-columns: 1fr 1fr
  }
}

/* Product page — related products */
.pdp-related-section {
  background: #151515;
  padding: 64px 0 72px
}

.pdp-related-section .section-sub {
  color: rgba(245, 235, 221, .55);
  margin: -12px 0 36px;
  font-size: 15px
}

.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px
}

@media(max-width:991px) {
  .pdp-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
  }
}

/* Captcha field */
.ea-captcha-field {
  margin-bottom: 18px
}

.ea-captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.ea-captcha-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 10px 14px;
  background: rgba(200, 169, 107, .12);
  border: 1px solid rgba(200, 169, 107, .35);
  border-radius: 5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #C8A96B;
  letter-spacing: .04em
}

.ea-captcha-refresh {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 169, 107, .35);
  background: transparent;
  color: #C8A96B;
  border-radius: 5px;
  cursor: pointer;
  transition: background .2s, border-color .2s
}

.ea-captcha-refresh:hover {
  background: rgba(200, 169, 107, .12);
  border-color: #C8A96B
}

.ea-captcha-row input {
  flex: 1;
  min-width: 120px
}

.ea-captcha-hint {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(245, 235, 221, .45)
}

.contact-captcha-wrap .ea-captcha-row input.contact-captcha-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(200, 169, 107, .25);
  border-radius: 5px;
  color: #F5EBDD;
  font-size: 14px
}

.contact-captcha-wrap .ea-captcha-hint {
  color: rgba(245, 235, 221, .45)
}

@media(max-width:768px) {
  .product-detail {
    padding: calc(var(--ea-nav-h) + 8px) 0 40px
  }

  .contact-container {
    padding: 0 24px
  }

  .contact-map-badge {
    left: 24px;
    right: 24px;
    font-size: 11px;
    padding: 10px 14px
  }

  .contact-strip {
    grid-template-columns: 1fr;
    margin-bottom: 48px
  }

  .contact-strip--overlap {
    margin-top: -40px
  }

  .contact-form-panel {
    padding: 28px 22px
  }

  .contact-form-row {
    grid-template-columns: 1fr
  }

  .page-hero {
    padding-left: 24px;
    padding-right: 24px
  }
}

/* Bootstrap dark-theme overrides (loaded after BS) */
body h1.section-heading,
body h2.section-heading,
body .section h2,
body .mfg-grid h2,
body .map-grid h2,
body .trust-bg h2,
body .products-bg h2,
body .testi-bg h2.section-heading {
  color: #F5EBDD !important
}

body .trust-bg h3,
body .trust-card h3 {
  color: #F5EBDD !important
}

body .trust-card p {
  color: rgba(245, 235, 221, .55) !important
}

body .section-body-text {
  color: rgba(245, 235, 221, .68) !important
}

body .section-center p {
  color: rgba(245, 235, 221, .65) !important
}

body .stat-lbl,
body .factory-stat-lbl {
  color: rgba(245, 235, 221, .45) !important
}

body .gold,
body .gold.italic-text {
  color: #C8A96B !important
}

/* Enquiry modal — base (overridden by theme-home2) */
.ea-enquiry-modal {
  background: #1e1e1e;
  color: #F5EBDD;
  border: 1px solid rgba(200, 169, 107, .3);
  border-radius: 5px
}

.ea-enquiry-modal .modal-title {
  font-family: 'Cormorant Garamond', serif;
  color: #C8A96B;
  font-size: 22px;
  margin: 0
}

.ea-modal-input {
  background: #151515 !important;
  color: #F5EBDD !important;
  border: 1px solid rgba(200, 169, 107, .25) !important;
  font-size: 14px;
  border-radius: 5px
}

.ea-modal-input:focus {
  border-color: #C8A96B !important;
  box-shadow: 0 0 0 2px rgba(200, 169, 107, .2) !important
}

.ea-enquiry-modal .form-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(245, 235, 221, .7);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px
}

.ea-enquiry-kicker {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C8A96B;
  margin: 0 0 6px;
  font-weight: 600
}

.ea-enquiry-sub {
  font-size: 13px;
  color: rgba(245, 235, 221, .55);
  margin: 8px 0 0;
  font-weight: 300;
  line-height: 1.5
}

.ea-enquiry-field {
  margin-bottom: 16px
}

.ea-enquiry-footer {
  gap: 10px;
  display: flex;
  width: 100%
}

.ea-enquiry-cancel {
  flex: 0 0 auto
}

.ea-enquiry-submit {
  flex: 1;
  justify-content: center
}

/* =========================================================
   HOME2 — Light professional theme (#5c1f2e brand)
   ========================================================= */
.theme-home2 {
  --ea-brand: #5c1f2e;
  --ea-brand-soft: #fbf8f2;
  --ea-ink: #241417;
  --ea-muted: rgba(36, 20, 23, .68);
  --ea-line: #e7ddce;
  --ea-gold: #bd9650;
  background: #ffffff !important;
  color: var(--ea-ink) !important;
}

/* Section separation */
.theme-home2 .ea-sec {
  border-top: 1px solid var(--ea-line)
}

.theme-home2 .ea-sec--white {
  background: #ffffff !important
}

.theme-home2 .ea-sec--cream {
  background: var(--ea-brand-soft) !important
}

.theme-home2 .ea-sec--brand {
  background: var(--ea-brand) !important;
  color: #fbf8f2 !important;
  border-top: none
}

/* Nav */
.theme-home2 .ea-nav {
  background: transparent
}

.theme-home2 .nav-links a {
  color: rgba(251, 248, 242, .92)
}

.theme-home2 .nav-links a:hover {
  color: var(--ea-gold)
}

.theme-home2 .nav-cta {
  border-color: rgba(251, 248, 242, .7);
  color: #fbf8f2
}

.theme-home2 .nav-cta:hover {
  background: #fff;
  color: var(--ea-brand);
  border-color: #fff
}

.theme-home2 .nav-toggle {
  background: rgba(92, 31, 46, .35);
  border-color: rgba(251, 248, 242, .45)
}

.theme-home2 .nav-toggle-bar {
  background: #fbf8f2
}

.theme-home2 .ea-nav.scrolled {
  background: rgba(255, 255, 255, .97) !important;
  border-bottom: 1px solid var(--ea-line) !important;
  box-shadow: 0 8px 24px rgba(36, 20, 23, .06);
}

.theme-home2 .ea-nav.scrolled .nav-links a {
  color: var(--ea-brand) !important
}

.theme-home2 .ea-nav.scrolled .nav-links a:hover {
  color: var(--ea-gold) !important
}

.theme-home2 .ea-nav.scrolled .nav-cta {
  border-color: var(--ea-brand);
  color: var(--ea-brand)
}

.theme-home2 .ea-nav.scrolled .nav-cta:hover {
  background: var(--ea-brand);
  color: #fff
}

.theme-home2 .ea-nav.scrolled .nav-toggle {
  background: rgba(255, 255, 255, .9);
  border-color: rgba(92, 31, 46, .35)
}

.theme-home2 .ea-nav.scrolled .nav-toggle-bar {
  background: var(--ea-brand)
}

/* Light logo → brand maroon on white header */
.theme-home2 .ea-nav.scrolled .nav-logo-badge::after {
  opacity: 0;
  animation: none
}

.theme-home2.nav-open .nav-links {
  background: #fff !important;
  border-left: 1px solid var(--ea-line)
}

.theme-home2.nav-open .nav-links a {
  color: var(--ea-brand) !important
}

.theme-home2.nav-open .nav-logo img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(42%) saturate(1800%) hue-rotate(314deg) brightness(92%) contrast(95%);
}

.theme-home2.nav-open .nav-logo-badge::after {
  opacity: 0;
  animation: none
}

/* Ticker */
.theme-home2 .ea-top-ticker {
  background: linear-gradient(90deg, #4a1824 0%, var(--ea-brand) 22%, #6e2a3c 50%, var(--ea-brand) 78%, #4a1824 100%) !important;
}

/* Hero slider brand overlays */
.theme-home2 .hero--main-slider {
  background: var(--ea-brand) !important
}

@media (max-width:767px) {
  .theme-home2 .hero--main-slider {
    background: transparent !important
  }
}

.theme-home2 .ea-hero-slide-overlay {
  background: none !important;
}

.theme-home2 .ea-hero-kicker,
.theme-home2 .ea-hero-kicker-line {
  color: var(--ea-gold) !important;
  background: transparent
}

.theme-home2 .ea-hero-kicker-line {
  background: var(--ea-gold) !important
}

.theme-home2 .btn-gold {
  background: var(--ea-gold);
  color: var(--ea-brand)
}

.theme-home2 .btn-gold:hover {
  background: #fff;
  color: var(--ea-brand)
}

.theme-home2 .btn-outline {
  border-color: var(--ea-brand);
  color: var(--ea-brand)
}

.theme-home2 .btn-outline:hover {
  background: var(--ea-brand);
  color: #fff
}

.theme-home2 .hero--main-slider .btn-outline,
.theme-home2 .ea-sec--brand .btn-outline {
  border-color: rgba(251, 248, 242, .55);
  color: #fbf8f2;
}

.theme-home2 .hero--main-slider .btn-outline:hover,
.theme-home2 .ea-sec--brand .btn-outline:hover {
  background: #fff;
  color: var(--ea-brand);
  border-color: #fff;
}

.theme-home2 .ea-hero-nav {
  background: rgba(92, 31, 46, .4);
  border-color: rgba(251, 248, 242, .4)
}

.theme-home2 .hero--main-slider .owl-nav button:hover .ea-hero-nav {
  background: var(--ea-gold);
  color: var(--ea-brand)
}

/* Static/video hero fallback */
.theme-home2 .hero:not(.hero--main-slider):not(.hero--video) {
  background: var(--ea-brand-soft) !important;
  color: var(--ea-ink)
}

.theme-home2 .hero-title {
  color: var(--ea-brand) !important
}

.theme-home2 .hero-sub {
  color: var(--ea-ink) !important
}

.theme-home2 .hero-body {
  color: var(--ea-muted) !important
}

/* Global text on light sections */
.theme-home2 .section-heading,
.theme-home2 .section h2,
.theme-home2 .section h3,
.theme-home2 .trust-bg h2,
.theme-home2 .trust-bg h3,
.theme-home2 .trust-card h3,
.theme-home2 .mfg-grid h2,
.theme-home2 .map-grid h2,
.theme-home2 .final-h,
.theme-home2 .pillars-heading {
  color: var(--ea-brand) !important;
}

.theme-home2 .section-body-text,
.theme-home2 .section-center p,
.theme-home2 .stat-lbl,
.theme-home2 .factory-stat-lbl,
.theme-home2 .final-sub,
.theme-home2 .trust-card p,
.theme-home2 .ea-scroll-hint {
  color: var(--ea-muted) !important;
}

.theme-home2 .gold,
.theme-home2 .gold.italic-text {
  color: var(--ea-gold) !important
}

.theme-home2 .gold-line {
  background: var(--ea-gold) !important
}

.theme-home2 .text-link {
  color: var(--ea-brand);
  border-color: var(--ea-brand)
}

.theme-home2 .text-link:hover {
  color: var(--ea-gold);
  border-color: var(--ea-gold)
}

.theme-home2 .stat-num {
  color: var(--ea-brand) !important
}

.theme-home2 .map-btn {
  border-color: var(--ea-brand);
  color: var(--ea-brand)
}

.theme-home2 .map-btn:hover {
  background: var(--ea-brand);
  color: #fff
}

/* About / mfg quote */
.theme-home2 .about-img-frame {
  border-color: var(--ea-gold)
}

.theme-home2 .mfg-quote-box {
  background: rgba(92, 31, 46, .92) !important;
  color: #fbf8f2
}

.theme-home2 .mfg-quote-box p {
  color: #fbf8f2 !important
}

/* Collections already light — just border sep handled by ea-sec */
.theme-home2 .ea-collections-v2 {
  background: var(--ea-brand-soft) !important
}

/* Trust cards */
.theme-home2 .trust-card {
  background: #fff !important;
  border: 1px solid var(--ea-line) !important;
  box-shadow: 0 10px 30px rgba(36, 20, 23, .04);
}

.theme-home2 .trust-card:hover {
  background: #fff !important;
  border-color: var(--ea-gold) !important;
  box-shadow: 0 16px 36px rgba(36, 20, 23, .08);
}

.theme-home2 .trust-icon {
  color: var(--ea-brand)
}

/* Factory — keep photo, brand strip */
.theme-home2 .factory-section {
  background: #fff !important;
  border-top: 1px solid var(--ea-line)
}

.theme-home2 .factory-overlay {
  background: linear-gradient(to right, rgba(92, 31, 46, .9) 0%, rgba(92, 31, 46, .45) 55%, rgba(92, 31, 46, .08) 100%) !important;
}

.theme-home2 .factory-strip-text {
  color: var(--ea-brand) !important
}

.theme-home2 .factory-bottom-strip {
  background: var(--ea-gold)
}

/* Pillars */
.theme-home2 .pillars-section {
  background: var(--ea-brand-soft) !important;
  border-top: 1px solid var(--ea-line);
  padding-bottom: 80px;
}

.theme-home2 .pillars-header {
  text-align: center;
  margin-bottom: 80px
}

.theme-home2 .pillars-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ea-gold);
  margin-bottom: 20px;
}

.theme-home2 .pillars-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  color: var(--ea-brand) !important;
  margin: 0;
}

.theme-home2 .pillars-heading-line {
  width: 80px;
  height: 1px;
  margin: 28px auto 0;
  background: linear-gradient(to right, transparent, var(--ea-gold), transparent);
}

.theme-home2 .pillars-bg-word {
  color: rgba(92, 31, 46, .05) !important
}

.theme-home2 .pillar-name {
  color: var(--ea-brand) !important
}

.theme-home2 .pillar-designation {
  color: var(--ea-muted) !important
}

.theme-home2 .pillar-quote {
  color: rgba(36, 20, 23, .72) !important
}

.theme-home2 .pillar-bio {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin: 20px auto 0;
  max-width: 340px;
  color: var(--ea-muted) !important;
}

.theme-home2 .pillar-tag {
  margin-top: 32px;
  display: inline-block;
  border-color: rgba(92, 31, 46, .22);
  color: var(--ea-brand);
}

.theme-home2 .pillar-divider {
  background: var(--ea-gold) !important
}

.theme-home2 .pillar-portrait-overlay {
  background: linear-gradient(to top, rgba(92, 31, 46, .85) 0%, rgba(92, 31, 46, .1) 50%, transparent 100%) !important;
}

.theme-home2 .pillars-footer-band {
  background: var(--ea-brand) !important;
  padding: 72px 48px;
  border-top: none;
}

.theme-home2 .pillars-footer {
  text-align: center;
  margin: 0;
  padding: 0;
  border-top: none;
}

.theme-home2 .pillars-footer-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 28px);
  font-style: italic;
  color: #fbf8f2 !important;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

.theme-home2 .pillars-footer-attr {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ea-gold) !important;
}

.theme-home2 .pillar-name-shimmer {
  background: linear-gradient(90deg, var(--ea-gold) 30%, var(--ea-brand) 50%, var(--ea-gold) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Default pillars (non-home2 pages) keep dark look via these base classes */
.pillars-header {
  text-align: center;
  margin-bottom: 80px
}

.pillars-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #C8A96B;
  margin-bottom: 20px
}

.pillars-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 1.05;
  color: #F5EBDD;
  margin: 0
}

.pillars-heading-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #C8A96B, transparent);
  margin: 28px auto 0
}

.pillars-footer-band {
  background: #4B0008;
  padding: 72px 48px
}

.pillars-footer {
  text-align: center;
  margin: 0;
  padding: 0;
  border-top: none
}

.pillars-footer-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  color: rgba(245, 235, 221, .85);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7
}

.pillars-footer-attr {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(200, 169, 107, .75)
}

.pillar-bio {
  font-size: 14px;
  color: rgba(245, 235, 221, .55);
  font-weight: 300;
  line-height: 1.8;
  margin: 20px auto 0;
  max-width: 340px
}

.pillar-tag {
  margin-top: 32px;
  display: inline-block
}

/* Video reels — white band (contrast vs cream trust) */
.theme-home2 .video-reels-section {
  background: #fff !important;
  border-top: 1px solid var(--ea-line)
}

.theme-home2 .video-reels-section .section-heading {
  color: var(--ea-brand) !important
}

.theme-home2 .video-reels-section .section-center p {
  color: var(--ea-muted) !important
}

.theme-home2 .yt-reel-embed,
.theme-home2 .ig-reel-embed {
  box-shadow: none !important;
  border: 1px solid var(--ea-line);
  background: #f3eee6;
}

.theme-home2 .ea-reels-owl .owl-item.center .yt-reel-embed,
.theme-home2 .ea-reels-owl .owl-item.center .ig-reel-embed {
  box-shadow: none !important;
  border-color: rgba(189, 150, 80, .45);
}

.theme-home2 .ea-reels-owl .owl-item:not(.center) .yt-reel-embed,
.theme-home2 .ea-reels-owl .owl-item:not(.center) .ig-reel-embed {
  opacity: .72;
}

/* Trust — cream band + white cards (different from Partner Stories) */
.theme-home2 .trust-bg {
  background: var(--ea-brand-soft) !important;
  border-top: 1px solid var(--ea-line);
  padding-top: 88px;
  padding-bottom: 96px;
}

/* Map */
.theme-home2 .map-bg {
  background: #fff !important
}

.theme-home2 .india-map-wrap .india-state {
  fill: #5c1f2e;
  stroke: rgba(189, 150, 80, .65);
  stroke-width: .85;
}

.theme-home2 .india-map-wrap .india-state.is-active {
  fill: #4a1824;
  stroke: rgba(245, 220, 160, .9);
  stroke-width: 1;
}

.theme-home2 .india-map-wrap .india-state.is-hovered,
.theme-home2 .india-map-wrap .india-state:focus-visible {
  fill: #6e2a3c;
  stroke: #f5dca0;
  stroke-width: 1.15;
}

.theme-home2 .india-map-tooltip {
  background: #fff;
  border-color: var(--ea-line);
  box-shadow: 0 10px 28px rgba(36, 20, 23, .12)
}

.theme-home2 .india-map-tooltip-name {
  color: var(--ea-brand) !important
}

.theme-home2 .india-map-hint {
  color: rgba(36, 20, 23, .45) !important;
  background: rgba(255, 255, 255, .85)
}

.theme-home2 .india-map-fallback {
  color: var(--ea-muted);
  border-color: var(--ea-line)
}

/* Testimonials */
.theme-home2 .testi-bg {
  background: var(--ea-brand-soft) !important
}

.theme-home2 .testi-bg .section-heading,
.theme-home2 .testi-section .section-heading {
  color: var(--ea-brand) !important
}

.theme-home2 .testi-bg .gold,
.theme-home2 .testi-bg .gold.italic-text,
.theme-home2 .testi-section .gold.italic-text {
  color: var(--ea-gold) !important
}

.theme-home2 .testi-card {
  background: #fff !important;
  border: 1px solid var(--ea-line) !important;
  box-shadow: 0 12px 32px rgba(36, 20, 23, .05);
}

.theme-home2 .testi-quote-mark {
  color: var(--ea-gold) !important
}

.theme-home2 .testi-text {
  color: var(--ea-ink) !important
}

.theme-home2 .testi-name {
  color: var(--ea-brand) !important
}

.theme-home2 .testi-city {
  color: var(--ea-muted) !important
}

.theme-home2 .ea-testi-owl .owl-dot span {
  background: rgba(92, 31, 46, .2)
}

.theme-home2 .ea-testi-owl .owl-dot.active span {
  background: var(--ea-brand)
}

/* Catalogue — brand band */
.theme-home2 .catalogue-wrap {
  background: var(--ea-brand) !important
}

.theme-home2 .catalogue-left-fade {
  background: linear-gradient(to right, var(--ea-brand) 40%, transparent) !important
}

.theme-home2 .catalogue-h {
  color: #fbf8f2 !important
}

.theme-home2 .catalogue-wrap .section-body-text {
  color: rgba(251, 248, 242, .78) !important
}

.theme-home2 .catalogue-wrap .gold {
  color: var(--ea-gold) !important
}

/* Final CTA — dark */
.theme-home2 .final-cta {
  background: #5c1f2e !important;
  border-top: 1px solid rgba(200, 169, 107, .15) !important;
}

.theme-home2 .final-cta .final-h {
  color: #F5EBDD !important
}

.theme-home2 .final-cta .final-sub {
  color: rgba(245, 235, 221, .6) !important
}

.theme-home2 .final-cta .gold,
.theme-home2 .final-cta .gold.italic-text {
  color: var(--ea-gold) !important
}

.theme-home2 .final-cta .btn-outline {
  border-color: rgba(251, 248, 242, .55);
  color: #fbf8f2
}

.theme-home2 .final-cta .btn-outline:hover {
  background: #fff;
  color: var(--ea-brand);
  border-color: #fff
}

/* Blogs */
.theme-home2 .hp-blogs-section {
  background: #fff !important
}

.theme-home2 .hp-blog-media {
  border-color: var(--ea-line);
  box-shadow: 0 12px 28px rgba(36, 20, 23, .06)
}

.theme-home2 .hp-blog-card:hover .hp-blog-media {
  border-color: var(--ea-gold);
  box-shadow: 0 20px 40px rgba(36, 20, 23, .1)
}

.theme-home2 h3.hp-blog-title,
.theme-home2 .hp-blogs-section .hp-blog-title {
  color: #fff !important
}

.theme-home2 .hp-blogs-section .hp-blog-excerpt {
  color: rgba(255, 255, 255, .88) !important
}

.theme-home2 .hp-blog-cta {
  color: #fff;
  background: var(--ea-brand)
}

/* Footer */
.theme-home2 .footer {
  background: var(--ea-brand) !important;
  border-top: 4px solid var(--ea-gold) !important;
}

.theme-home2 .footer-logo-row span {
  color: #fbf8f2 !important
}

.theme-home2 .footer-logo-row img {
  mix-blend-mode: normal;
  filter: brightness(0) invert(1)
}

.theme-home2 .footer-desc,
.theme-home2 .footer-links a,
.theme-home2 .contact-item,
.theme-home2 .footer-contact-col .contact-item a,
.theme-home2 .footer-bottom p,
.theme-home2 .footer-bottom-links a {
  color: rgba(251, 248, 242, .7) !important
}

.theme-home2 .footer-links a:hover,
.theme-home2 .footer-contact-col .contact-item a:hover,
.theme-home2 .footer-bottom-links a:hover {
  color: var(--ea-gold) !important
}

.theme-home2 .footer-col-title {
  color: var(--ea-gold) !important
}

.theme-home2 .footer-bottom {
  border-top-color: rgba(251, 248, 242, .15) !important
}

.theme-home2 .footer-social--contact {
  border-top-color: rgba(251, 248, 242, .15) !important
}

.theme-home2 .footer-social-link {
  border-color: rgba(251, 248, 242, .3);
  color: #fbf8f2
}

.theme-home2 .footer-social-link:hover {
  background: var(--ea-gold);
  color: var(--ea-brand);
  border-color: var(--ea-gold)
}

.theme-home2 .contact-icon {
  border-color: rgba(189, 150, 80, .6);
  color: var(--ea-gold)
}

@media (max-width:640px) {
  .theme-home2 .pillars-heading {
    font-size: 40px
  }
}

/* =========================================================
   Inner pages — page hero (dark brand) + light sections
   ========================================================= */
.theme-home2 .page-hero {
  background: var(--ea-brand) !important;
  border-bottom: 1px solid rgba(251, 248, 242, .08);
}

.theme-home2 .page-hero h1 {
  color: #fbf8f2 !important
}

.theme-home2 .page-hero p {
  color: rgba(251, 248, 242, .72) !important
}

.theme-home2 .page-hero .ea-breadcrumbs a {
  color: var(--ea-gold) !important
}

.theme-home2 .page-hero .ea-bc-sep {
  color: rgba(251, 248, 242, .4) !important
}

.theme-home2 .page-hero .ea-bc-current {
  color: rgba(251, 248, 242, .85) !important
}

.theme-home2 .products-page {
  background: var(--ea-brand-soft) !important;
  border-top: 1px solid var(--ea-line);
}

.theme-home2 .prod-list-card {
  background: #fff;
  border: 1px solid var(--ea-line);
  box-shadow: 0 8px 24px rgba(36, 20, 23, .04);
  border-radius: 5px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.theme-home2 .prod-list-card:hover {
  border-color: rgba(189, 150, 80, .55);
  box-shadow: 0 16px 36px rgba(36, 20, 23, .08);
  transform: translateY(-2px);
}

.theme-home2 .prod-list-thumb {
  background: #f3eee6;
  border-radius: 5px 5px 0 0;
}

.theme-home2 .prod-list-title {
  color: var(--ea-brand)
}

.theme-home2 .prod-list-title:hover {
  color: var(--ea-gold)
}

.theme-home2 .prod-list-meta {
  color: var(--ea-muted)
}

.theme-home2 .products-grid-page .btn-gold.btn-prod {
  background: var(--ea-brand);
  color: #fff;
}

.theme-home2 .products-grid-page .btn-gold.btn-prod:hover {
  background: var(--ea-gold);
  color: var(--ea-brand);
}

.theme-home2 .pdp-zoom-wrap,
.theme-home2 .pdp-thumb {
  background: #f3eee6;
  border-color: var(--ea-line);
}

.theme-home2 .pdp-main-img {
  object-fit: contain;
  height: 100%;
  width: 100%
}

.theme-home2 .pdp-thumb img {
  object-fit: contain
}

.theme-home2 .pdp-thumb:hover {
  border-color: rgba(189, 150, 80, .55)
}

.theme-home2 .pdp-thumb.is-active {
  border-color: var(--ea-gold);
  box-shadow: 0 0 0 1px rgba(189, 150, 80, .35);
}

.theme-home2 .pdp-zoom-hint {
  background: rgba(251, 248, 242, .92);
  color: var(--ea-muted);
  border-color: var(--ea-line)
}

.theme-home2 .pdp-zoom-hint i {
  color: var(--ea-gold)
}

.theme-home2 .about-intro-section {
  background: #fff !important;
  border-top: 1px solid var(--ea-line);
}

.theme-home2 .about-page-desc,
.theme-home2 .about-page-desc p {
  color: var(--ea-muted) !important
}

.theme-home2 .page-content {
  background: #fff !important;
  color: var(--ea-ink) !important;
}

.theme-home2 .page-content h2 {
  color: var(--ea-brand) !important
}

/* Contact */
.theme-home2 .contact-page {
  background: var(--ea-brand-soft) !important
}

.theme-home2 .contact-map-hero {
  background: #fff;
  border-bottom: 1px solid var(--ea-line)
}

.theme-home2 .contact-map-hero iframe {
  filter: none
}

.theme-home2 .contact-map-badge {
  background: rgba(255, 255, 255, .96);
  color: var(--ea-brand);
  border-color: var(--ea-line);
  box-shadow: 0 8px 24px rgba(36, 20, 23, .08);
}

.theme-home2 .contact-map-badge i {
  color: var(--ea-gold)
}

.theme-home2 .contact-card {
  background: #fff !important;
  border-color: var(--ea-line) !important;
  box-shadow: 0 10px 28px rgba(36, 20, 23, .05);
}

.theme-home2 .contact-card:hover {
  border-color: rgba(189, 150, 80, .5) !important
}

.theme-home2 .contact-card-label,
.theme-home2 .contact-section-title {
  color: var(--ea-brand) !important
}

.theme-home2 .contact-card-value,
.theme-home2 .contact-card-value a {
  color: var(--ea-muted) !important
}

.theme-home2 .contact-card-value a:hover {
  color: var(--ea-brand) !important
}

.theme-home2 .contact-card-icon {
  border-color: rgba(92, 31, 46, .25);
  color: var(--ea-brand)
}

.theme-home2 .contact-intro,
.theme-home2 .contact-intro p {
  color: var(--ea-muted) !important
}

.theme-home2 .contact-highlights li {
  color: var(--ea-muted) !important
}

.theme-home2 .contact-highlights i {
  background: rgba(92, 31, 46, .08);
  color: var(--ea-brand)
}

.theme-home2 .contact-form-panel {
  background: #fff !important;
  border: 1px solid var(--ea-line) !important;
  box-shadow: 0 16px 40px rgba(36, 20, 23, .06);
}

.theme-home2 .contact-form-head {
  border-bottom-color: var(--ea-line)
}

.theme-home2 .contact-form-head h3 {
  color: var(--ea-brand) !important
}

.theme-home2 .contact-form-head p {
  color: var(--ea-muted) !important
}

.theme-home2 .contact-field label {
  color: var(--ea-brand) !important
}

.theme-home2 .contact-field input,
.theme-home2 .contact-field textarea,
.theme-home2 .contact-captcha-wrap .ea-captcha-row input.contact-captcha-input {
  background: #fbf8f2 !important;
  border: 1px solid var(--ea-line) !important;
  color: var(--ea-ink) !important;
}

.theme-home2 .contact-field input::placeholder,
.theme-home2 .contact-field textarea::placeholder {
  color: rgba(36, 20, 23, .35)
}

.theme-home2 .contact-field input:focus,
.theme-home2 .contact-field textarea:focus {
  border-color: rgba(189, 150, 80, .65) !important;
  box-shadow: 0 0 0 3px rgba(189, 150, 80, .12);
}

.theme-home2 .ea-captcha-question {
  background: rgba(92, 31, 46, .06);
  border-color: rgba(92, 31, 46, .2);
  color: var(--ea-brand);
}

.theme-home2 .ea-captcha-refresh {
  border-color: var(--ea-line);
  color: var(--ea-brand);
  background: #fff;
}

.theme-home2 .ea-captcha-refresh:hover {
  background: var(--ea-brand-soft);
  border-color: var(--ea-gold)
}

.theme-home2 .ea-captcha-hint,
.theme-home2 .contact-captcha-wrap .ea-captcha-hint {
  color: var(--ea-muted) !important
}

.theme-home2 .contact-submit {
  background: var(--ea-brand);
  color: #fff
}

.theme-home2 .contact-submit:hover {
  background: var(--ea-gold);
  color: var(--ea-brand)
}

/* Enquiry modal — light theme */
.theme-home2 .ea-enquiry-modal {
  background: #fff !important;
  color: var(--ea-ink);
  border: 1px solid var(--ea-line) !important;
  border-radius: 5px;
  box-shadow: 0 24px 60px rgba(36, 20, 23, .14);
  overflow: hidden;
}

.theme-home2 .ea-enquiry-header {
  background: var(--ea-brand-soft);
  border-bottom: 1px solid var(--ea-line) !important;
  padding: 14px 20px;
  align-items: center;
  flex-shrink: 0;
}

.theme-home2 .ea-enquiry-modal .modal-title {
  color: var(--ea-brand) !important;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0;
}

.theme-home2 .ea-enquiry-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c1f2e'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.85em auto no-repeat;
  opacity: .7;
  width: 1em;
  height: 1em;
  padding: .5em;
  margin: 0;
  border: 0;
  box-shadow: none;
}

.theme-home2 .ea-enquiry-close:hover {
  opacity: 1
}

.theme-home2 #enquiryModal .modal-dialog {
  max-height: calc(100vh - 1.5rem);
  margin: .75rem auto;
}

.theme-home2 #enquiryModal .modal-content {
  max-height: calc(100vh - 1.5rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.theme-home2 #enquiryModal .ea-enquiry-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.theme-home2 #enquiryModal .modal-body.ea-enquiry-body {
  padding: 16px 20px 8px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
  min-height: 0;
}

.theme-home2 .ea-enquiry-footer {
  flex-shrink: 0
}

.theme-home2 .ea-enquiry-modal .form-label {
  color: var(--ea-brand) !important;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}

.theme-home2 .ea-modal-input,
.theme-home2 .ea-enquiry-modal select.ea-modal-input {
  background: var(--ea-brand-soft) !important;
  color: var(--ea-ink) !important;
  border: 1px solid var(--ea-line) !important;
  border-radius: 5px;
  padding: 12px 14px;
  min-height: 46px;
}

.theme-home2 .ea-enquiry-modal textarea.ea-modal-input {
  min-height: 96px;
  resize: vertical
}

.theme-home2 .ea-modal-input::placeholder {
  color: rgba(36, 20, 23, .35)
}

.theme-home2 .ea-modal-input:focus {
  border-color: rgba(189, 150, 80, .65) !important;
  box-shadow: 0 0 0 3px rgba(189, 150, 80, .12) !important;
  background: #fff !important;
}

.theme-home2 .ea-enquiry-modal .ea-captcha-question {
  background: rgba(92, 31, 46, .06);
  border-color: rgba(92, 31, 46, .2);
  color: var(--ea-brand);
}

.theme-home2 .ea-enquiry-modal .ea-captcha-refresh {
  border-color: var(--ea-line);
  color: var(--ea-brand);
  background: #fff;
}

.theme-home2 .ea-enquiry-modal .ea-captcha-refresh:hover {
  background: var(--ea-brand-soft);
  border-color: var(--ea-gold);
}

.theme-home2 .ea-enquiry-modal .ea-captcha-hint {
  color: var(--ea-muted) !important
}

.theme-home2 .ea-enquiry-footer {
  border-top: 1px solid var(--ea-line) !important;
  background: #fff;
  padding: 16px 24px 22px;
  display: flex;
  gap: 10px;
  width: 100%;
}

.theme-home2 .ea-enquiry-cancel {
  border: 1px solid var(--ea-line);
  background: #fff;
  color: var(--ea-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 5px;
  min-height: 46px;
}

.theme-home2 .ea-enquiry-cancel:hover {
  border-color: var(--ea-brand);
  background: var(--ea-brand-soft)
}

.theme-home2 .ea-enquiry-submit {
  flex: 1;
  background: var(--ea-brand) !important;
  color: #fff !important;
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 5px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.theme-home2 .ea-enquiry-submit:hover {
  background: var(--ea-gold) !important;
  color: var(--ea-brand) !important
}

.theme-home2 .ea-enquiry-submit:disabled {
  opacity: .7;
  cursor: wait
}

/* Blogs index — image overlay cards */
.theme-home2 .blogs-index-section {
  background: var(--ea-brand-soft) !important;
  border-top: 1px solid var(--ea-line)
}

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

@media (max-width:991px) {
  .blogs-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px
  }
}

@media (max-width:575px) {
  .blogs-grid-page {
    grid-template-columns: 1fr;
    gap: 14px
  }
}

.blog-overlay-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 5px
}

.blog-overlay-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 5px;
  background: #f3eee6;
  border: 1px solid var(--ea-line);
  transition: transform .45s ease, border-color .35s ease, box-shadow .45s ease;
}

.blog-overlay-card:hover .blog-overlay-media {
  transform: translateY(-4px);
  border-color: rgba(189, 150, 80, .55);
  box-shadow: 0 18px 40px rgba(36, 20, 23, .12);
}

.blog-overlay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1);
}

.blog-overlay-card:hover .blog-overlay-media img {
  transform: scale(1.06)
}

.blog-overlay-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .45) 45%, rgba(0, 0, 0, .88) 100%);
}

.blog-overlay-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
  border-radius: 5px;
}

.blog-overlay-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: #fff !important;
  margin: 0;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-overlay-excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, .85) !important;
  margin: 0;
  line-height: 1.55;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-overlay-cta {
  align-self: flex-start;
  margin-top: 6px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  font-size: 13px;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.blog-overlay-card:hover .blog-overlay-cta {
  transform: translateX(4px);
  background: var(--ea-gold);
  color: var(--ea-brand);
}

.theme-home2 .blog-overlay-title,
.theme-home2 .blogs-index-section h3.blog-overlay-title {
  color: #fff !important
}

.theme-home2 .blog-overlay-excerpt {
  color: rgba(255, 255, 255, .85) !important
}

/* Blog detail */
.theme-home2 .blog-show-section {
  background: #fff !important;
  border-top: 1px solid var(--ea-line);
  padding: 64px 0 96px
}

.blog-show-wrap {
  max-width: 860px
}

.blog-show-cover {
  margin-bottom: 28px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--ea-line);
  background: #f3eee6
}

.blog-show-cover img {
  width: 100%;
  display: block
}

.blog-show-excerpt {
  font-size: 18px;
  font-style: italic;
  color: var(--ea-muted);
  line-height: 1.7;
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ea-line);
}

.theme-home2 .blog-show-content,
.theme-home2 .blog-show-content p,
.theme-home2 .blog-show-content li {
  color: var(--ea-muted) !important
}

.theme-home2 .blog-show-content h2,
.theme-home2 .blog-show-content h3 {
  color: var(--ea-brand) !important
}

.blog-show-back {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--ea-line)
}

.theme-home2 .ea-empty-msg {
  color: var(--ea-muted) !important
}

/* Product detail */
.theme-home2 .product-detail {
  background: #fff !important
}

.theme-home2 .product-detail .ea-breadcrumbs a {
  color: var(--ea-brand) !important
}

.theme-home2 .product-detail .ea-bc-sep {
  color: rgba(36, 20, 23, .35) !important
}

.theme-home2 .product-detail .ea-bc-current {
  color: var(--ea-muted) !important
}

.theme-home2 .pdp-info {
  color: var(--ea-muted) !important
}

.theme-home2 .pdp-title {
  color: var(--ea-brand) !important
}

.theme-home2 .pdp-subtitle {
  color: var(--ea-muted) !important
}

.theme-home2 .pdp-meta {
  color: var(--ea-muted) !important
}

.theme-home2 .pdp-meta strong {
  color: var(--ea-ink)
}

.theme-home2 .pdp-meta a {
  color: var(--ea-gold) !important
}

.theme-home2 .pdp-meta a:hover {
  color: var(--ea-brand) !important
}

.theme-home2 .pdp-description,
.theme-home2 .pdp-description p {
  color: var(--ea-muted) !important
}

.theme-home2 .product-detail-actions .btn-gold {
  background: var(--ea-brand);
  color: #fff;
}

.theme-home2 .product-detail-actions .btn-gold:hover {
  background: var(--ea-gold);
  color: var(--ea-brand);
}

.theme-home2 .pdp-related-section {
  background: var(--ea-brand-soft) !important;
  border-top: 1px solid var(--ea-line);
}

.theme-home2 .pdp-related-section .section-heading {
  color: var(--ea-brand) !important
}

.theme-home2 .pdp-related-section .section-sub {
  color: var(--ea-muted) !important
}

.theme-home2 .collections-page {
  background: var(--ea-brand-soft) !important
}

.theme-home2 .ea-pagination .page-link {
  background: #fff;
  border-color: var(--ea-line);
  color: var(--ea-brand);
}

.theme-home2 .ea-pagination .page-item.active .page-link {
  background: var(--ea-brand);
  border-color: var(--ea-brand);
  color: #fff;
}

.theme-home2 .ea-pagination .page-link:hover {
  background: var(--ea-brand-soft);
  color: var(--ea-brand);
  border-color: var(--ea-gold)
}