:root {
  --ivory: #f7f1e8;
  --ivory-2: #efe6da;
  --champagne: #d1ad70;
  --gold: #b88743;
  --gold-light: #dfc28c;
  --mauve: #b7a4a7;
  --mauve-dark: #765f65;
  --plum: #40323d;
  --ink: #2e2529;
  --white: #fffdf9;
  --line: rgba(184, 135, 67, .38);
  --serif: "Cinzel", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
}

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

button {
  font: inherit;
}

p {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.15px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .35s ease, box-shadow .35s ease;
}

.site-header.scrolled {
  background: rgba(64, 50, 61, .96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.nav-wrap {
  width: min(1380px, 92%);
  min-height: 92px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  min-width: 205px;
  display: grid;
  justify-items: center;
  line-height: 1;
}

.brand-mark {
  font-size: 30px;
  color: var(--gold-light);
  transform: rotate(45deg);
  margin-bottom: 6px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 1.5px;
}

.brand-sub {
  font-size: 9px;
  letter-spacing: 4px;
  margin-top: 6px;
}

.site-header:not(.scrolled) .brand-name,
.site-header:not(.scrolled) .brand-sub,
.site-header:not(.scrolled) .main-nav a,
.site-header:not(.scrolled) .dropdown-trigger {
  color: #fffaf2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav>a,
.dropdown-trigger {
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: .6px;
  color: var(--white);
  padding: 36px 0 34px;
  position: relative;
}

.main-nav>a.active::after,
.main-nav>a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27px;
  height: 1px;
  background: var(--gold-light);
}

.nav-dropdown {
  position: relative;
}

.dropdown-trigger span {
  font-size: 14px;
  margin-left: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 190px;
  padding: 9px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(40, 25, 30, .2);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 13px 12px;
  /* color: var(--ink); */
  color: #2e2529;
  font-size: 10px;
  letter-spacing: .5px;
}

.dropdown-menu a:hover {
  background: var(--ivory);
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 15px;
}

.phone strong,
.phone small {
  display: block;
}

.phone small {
  font-size: 15px;
  margin-top: 3px;
}

.phone-icon {
  font-size: 50px;
}

.whatsapp-btn {
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 5px;
  padding: 11px 15px;
  color: white;
  font-size: 10px;
  letter-spacing: .6px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 5px;
  background: currentColor;
}

.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: var(--plum);
}



.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.25s ease, visibility 1.25s ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.slide.is-active img {
  animation: gentleZoom 5s ease both;
}

@keyframes gentleZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.06);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(45, 34, 39, .74) 0%, rgba(45, 34, 39, .42) 44%, rgba(45, 34, 39, .08) 75%);
}

.hero-content {
  position: absolute;
  left: max(7%, calc((100% - 1380px)/2));
  top: 50%;
  transform: translateY(-43%);
  color: white;
}

.eyebrow {
  font-family: var(--serif);
  color: #ead7b2;
  font-size: 18px;
  letter-spacing: .4px;
  margin: 0 0 17px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -1px;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  margin: 25px 0 18px;
}

.ornament span,
.heading-line span {
  width: 82px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.hero-copy {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-size: 10px;
  letter-spacing: .4px;
  border-radius: 3px;
}

.btn-gold {
  background: var(--gold-light);
  color: #3e3030;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .7);
  color: white;
}

.btn-outline.light {
  border-color: var(--gold-light);
  color: white;
  font-size: 15px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: none;
  border: 0;
  color: white;
  font-size: 42px;
  font-weight: 200;
  cursor: pointer;
  opacity: .8;
}

.slider-arrow:hover {
  opacity: 1;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 6;
}

.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid white;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.dot.active {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.trust-strip {
  background: var(--plum);
  color: #fffaf4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 20px 6%;
}

.trust-strip div {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(223, 194, 140, .4);
  text-align: center;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  color: var(--gold-light);
  font-size: 25px;
}

.trust-strip strong {
  font-size: 15px;
  letter-spacing: .7px;
  line-height: 1.45;
}

.section-light {
  background: var(--ivory);
  padding: 70px 5%;
}

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

.section-heading p {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
  margin: 0 0 8px;
}

.section-heading h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  margin: 0;
}

.heading-line {
  color: var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.heading-line span {
  width: 70px;
}

.heading-line.left {
  justify-content: flex-start;
}

.collection-grid {
  width: min(1250px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.collection-card {
  border: 1px solid rgba(64, 50, 61, .12);
  background: #fbf8f2;
  text-align: center;
  transition: .3s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(64, 50, 61, .1);
}

.collection-image {
  aspect-ratio: 1/1.05;
  background: radial-gradient(circle at 50% 50%, #fff 0 13%, transparent 14%), linear-gradient(145deg, #ded2c4, #f8f2e8);
  position: relative;
  overflow: hidden;
}

/* .collection-image::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 65%;
  border: 7px solid #c79650;
  border-radius: 50%;
  left: 18%;
  top: 18%;
  transform: rotate(-25deg);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .45);
} */

/* .gold-earrings::after {
  width: 30%;
  height: 62%;
  left: 35%;
  border-radius: 50%;
  box-shadow: -38px 4px 0 -15px #d0a45d, 38px 4px 0 -15px #d0a45d;
} */

/* .gold-chain::after {
  width: 72%;
  height: 55%;
  left: 14%;
  top: 20%;
  border-width: 5px;
  border-radius: 50%;
} */

.gold-ring::after {
  width: 55%;
  height: 55%;
  left: 22%;
  top: 23%;
  border-width: 10px;
}

.gold-bangles::after {
  width: 68%;
  height: 43%;
  left: 16%;
  top: 28%;
  border-width: 9px;
  border-radius: 50%;
  transform: rotate(15deg);
}

.mangalsutra::after {
  width: 45%;
  height: 45%;
  left: 28%;
  top: 22%;
  border-width: 5px;
  box-shadow: 0 50px 0 -22px #2f2529, inset 0 0 0 4px #d0a45d;
}

.pendant::after {
  width: 42%;
  height: 42%;
  left: 29%;
  top: 29%;
  border-width: 6px;
  border-radius: 48% 48% 55% 55%;
}

.collection-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 15px;
  margin: 13px 0 7px;
}

.collection-card small {
  font-size: 8px;
  letter-spacing: .7px;
  display: block;
  padding-bottom: 15px;
}

.center-btn {
  display: block;
  width: max-content;
  margin: 28px auto 0;
  background: var(--mauve-dark);
  color: white;
  padding: 13px 25px;
  font-size: 9px;
  letter-spacing: .8px;
}

.investment {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--plum);
  color: white;
}

.investment-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    /* Width of the image side */
    width: 62%;

    overflow: hidden;
    z-index: 1;
}

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

    display: block;

    /* Makes the image completely fill the container */
    object-fit: cover;

    /* Important for your particular gold-biscuit image */
    object-position: center center;

    /* Prevents any tiny gap around the image */
    max-width: none;
}

.investment-content {
  position: relative;
  z-index: 2;
  width: min(1250px, 90%);
  margin: auto;
  padding: 62px 0;
}

.investment h2 {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 400;
  margin: 0;
}



.investment-content>p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.8;
}

.investment-points {
  display: flex;
  gap: 42px;
  margin: 25px 0;
}

.investment-points strong{
  font-size: 18px;
}

.investment-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.investment-points span {
  color: var(--gold-light);
  font-size: 27px;
}

.silver-note {
  width: min(760px, 100%);
  border-radius: 25px  0 25px 0;
  margin: auto;
  text-align: center;
  color: #5f5357;
  line-height: 1.9;
  font-size: 14px;
}

.center-btn{
    border-radius: 25px 0 25px 0;
}

.testimonial-grid {
  width: min(1080px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-grid article {
  border: 1px solid rgba(64, 50, 61, .14);
  padding: 24px;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, .25);
}

.quote {
  position: absolute;
  left: 17px;
  top: 7px;
  color: #d8c2a2;
  font-family: Georgia;
  font-size: 48px;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 12px;
}

.testimonial-grid p {
  font-size: 18px;
  line-height: 1.7;
  min-height: 65px;
}

.testimonial-grid strong,
.testimonial-grid small {
  display: block;
}

.testimonial-grid strong {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
}

.testimonial-grid small {
  margin-top: 4px;
  color: #88777a;
  font-size: 10px;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 45;
  display: grid;
  gap: 9px;
}

.floating-actions a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--mauve-dark);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(50, 35, 40, .18);
}

.floating-actions a span {
  font-size: 20px;
}

.floating-actions small {
  position: absolute;
  right: 62px;
  background: var(--white);
  color: var(--ink);
  padding: 5px 9px;
  border-radius: 12px;
  font-size: 9px;
  opacity: 0;
  transform: translateX(5px);
  transition: .2s;
  pointer-events: none;
}

.floating-actions a:hover small {
  opacity: 1;
  transform: translateX(0);
}

.floating-actions .float-wa {
  background: #5d8d72;
}

footer {
  background: var(--plum);
  color: #eee5dc;
  padding: 58px 6% 0;
}

.footer-grid {
  width: min(1250px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 55px;
}

.footer-brand .brand-name {
  color: var(--gold-light);
}

.footer-brand .brand-sub {
  display: block;
  margin-bottom: 20px;
}

.footer-grid h4 {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 1.3px;
  margin: 0 0 18px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  font-size: 10px;
  line-height: 1.8;
  color: #ddd2ca;
  margin: 0 0 7px;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 18px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px 0;
  border-top: 1px solid rgba(223, 194, 140, .25);
  font-size: 9px;
  color: #cdbfb7;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1050px) {
  .nav-wrap {
    gap: 15px;
  }

  .brand {
    min-width: 170px;
  }

  .main-nav {
    gap: 17px;
  }

  .nav-actions {
    gap: 8px;
  }

  .phone {
    display: none;
  }

  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .site-header {
    background: rgba(64, 50, 61, .94);
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand {
    margin-right: auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(64, 50, 61, .98);
    padding: 15px 7%;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav>a,
  .dropdown-trigger {
    padding: 13px 0;
    text-align: left;
  }

  .main-nav>a.active::after,
  .main-nav>a:hover::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255, 255, 255, .08);
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: white;
  }

  .nav-actions {
    margin-left: 0;
  }

  .whatsapp-btn {
    padding: 9px 11px;
    font-size: 9px;
  }

  .hero-content {
    left: 7%;
    right: 7%;
  }

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

  .hero-copy br {
    display: none;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .trust-strip div {
    border-bottom: 1px solid rgba(223, 194, 140, .25);
  }

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

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

  .investment-image {
    inset: 0;
    opacity: .28;
  }

  .investment-content {
    padding: 55px 0;
  }

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

@media (max-width: 520px) {
  .brand-name {
    font-size: 16px;
  }

  .brand-sub {
    font-size: 7px;
    letter-spacing: 2.5px;
  }

  .brand-mark {
    font-size: 23px;
  }

  .whatsapp-btn {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(45, 34, 39, .78), rgba(45, 34, 39, .28));
  }

  .hero-content {
    top: 54%;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .btn {
    min-height: 44px;
  }

  .slider-arrow {
    font-size: 34px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    padding: 10px 3%;
  }

  .trust-strip div {
    min-height: 95px;
  }

  .section-light {
    padding: 55px 5%;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .collection-grid {
    gap: 9px;
  }

  .collection-card h3 {
    font-size: 12px;
  }

  .investment-points {
    gap: 20px;
    flex-wrap: wrap;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
}

.footer-grid a{
  font-size: 18px;
}
.footer-grid p{
  font-size: 18px;
}

.hero-buttons a{
  font-size: 15px;
}
.silver-note a{
  font-size: 15px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 25px 0 25px 0;
}

.collection-card h3{
  font-weight: 900;
  font-size: 20px;
}
.collection-card small{
  font-weight: 900;
  font-size: 10px;
}

.float-wa span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-wa span img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

