:root {
  --bg: #FBF9F6;
  --bg-2: #F2EFEB;
  --gold: #B8860B;
  --gold-bright: #D4AF37;
  --rose: #B76E79;
  --text-main: #1A1A1A;
  --text-muted: #666666;
  --border-gold: rgba(184, 134, 11, .25);
  --font-display: "Cormorant Garamond", serif;
  --font-script: "Playfair Display", serif;
  --font-sans: "Jost", sans-serif;
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-weight: 300;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(184, 134, 11, .08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(183, 110, 121, .08), transparent 45%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

ul {
  list-style: none
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.05
}

.script {
  font-family: var(--font-script);
  font-style: italic
}

.gold-text {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 40%, #B76E79 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .72rem;
  margin-bottom: .75rem
}

.gold-divider {
  width: 80px;
  height: 1px;
  margin: 1rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.gold-divider.left {
  margin-left: 0
}

.muted {
  color: var(--text-muted)
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all .5s ease;
  background: transparent
}

.nav.scrolled {
  background: rgba(251, 249, 246, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold)
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .2em;
  font-weight: 600
}

.brand-tag {
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--text-muted)
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase
}

.nav-links a {
  transition: color .3s
}

.nav-links a:hover {
  color: var(--gold-bright)
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.2rem
}

.nav-icons .i {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  cursor: pointer
}

.nav-icons .i:hover {
  stroke: var(--gold-bright)
}

.cart-wrap {
  position: relative
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: #FBF9F6;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600
}

@media(max-width:880px) {
  .nav-links {
    display: none
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  transition: transform .2s ease-out
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px)
}

.glow-gold {
  top: 25%;
  left: 33%;
  width: 600px;
  height: 600px;
  background: rgba(184, 134, 11, .2)
}

.glow-rose {
  bottom: 25%;
  right: 25%;
  width: 500px;
  height: 500px;
  background: rgba(183, 110, 121, .15)
}

.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1602173574767-37ac01994b2a?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: .35;
  transition: transform .2s ease-out
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(251, 249, 246, .5), rgba(251, 249, 246, .2), #FBF9F6)
}

.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.sparkle {
  position: absolute;
  bottom: -20px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, #D4AF37, transparent 70%);
  animation: float-up linear infinite
}

@keyframes float-up {
  0% {
    transform: translateY(0) scale(.6);
    opacity: 0
  }

  10% {
    opacity: .9
  }

  90% {
    opacity: .6
  }

  100% {
    transform: translateY(-110vh) scale(1);
    opacity: 0
  }
}

.hero-text {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
  transition: transform .2s ease-out
}

.hero-text h1 {
  font-size: clamp(3rem, 9vw, 7.5rem);
  margin: .5rem 0 1.2rem
}

.hero-text .tagline {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: .05em
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  color: #FBF9F6;
  font-weight: 500;
  letter-spacing: .12em;
  padding: .9rem 2rem;
  text-transform: uppercase;
  font-size: .78rem;
  border: 1px solid #B8860B;
  transition: all .3s;
  box-shadow: 0 10px 30px -10px rgba(184, 134, 11, .4)
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(242, 208, 107, .7)
}

.btn-ghost {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  letter-spacing: .12em;
  padding: .9rem 2rem;
  text-transform: uppercase;
  font-size: .78rem;
  transition: all .3s
}

.btn-ghost:hover {
  background: rgba(184, 134, 11, .1);
  color: var(--text-main)
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  animation: pulse 2s ease-in-out infinite
}

.scroll-cue span {
  font-size: 10px;
  letter-spacing: .3em
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5
}

@keyframes pulse {

  0%,
  100% {
    opacity: .5;
    transform: translate(-50%, 0)
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 6px)
  }
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  background: #F2EFEB;
  padding: .9rem 0
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite
}

.marquee-track span {
  color: var(--gold);
  letter-spacing: .25em;
  font-size: .78rem;
  text-transform: uppercase
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

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

/* SECTIONS */
.section {
  padding: 6rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem)
}

.grid-4 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr)
}

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

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

/* CATEGORY */
.cat-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
  background: #ddd
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  filter: brightness(.85)
}

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

.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(251, 249, 246, .95), transparent 55%);
  z-index: 1
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(242, 208, 107, .18), transparent);
  transform: translateX(-150%) skewX(-20deg);
  pointer-events: none;
  z-index: 2
}

.cat-card:hover::after {
  animation: shimmer 1.1s ease forwards
}

@keyframes shimmer {
  to {
    transform: translateX(250%) skewX(-20deg)
  }
}

.cat-meta {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 3
}

.cat-meta h3 {
  font-size: 1.5rem;
  color: var(--text-main)
}

.cat-meta span {
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase
}

/* PRODUCT */
.product {
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .5s
}

.product:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px -20px rgba(201, 168, 76, .4);
  transform: translateY(-4px)
}

.product .pimg {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative
}

.product .pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s
}

.product:hover .pimg img {
  transform: scale(1.08)
}

.badge {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: rgba(251, 249, 246, .8);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: .62rem;
  letter-spacing: .2em;
  padding: .3rem .6rem;
  text-transform: uppercase;
  backdrop-filter: blur(4px)
}

.pbody {
  padding: 1.2rem;
  text-align: center
}

.pbody h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: .3rem
}

.pbody .meta {
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .6rem
}

.pbody .price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-bright)
}

/* FEATURE */
.feature {
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--border-gold);
  padding: 2rem;
  text-align: center;
  transition: all .5s;
  backdrop-filter: blur(8px)
}

.feature:hover {
  border-color: var(--gold);
  box-shadow: 0 0 40px -10px rgba(201, 168, 76, .5)
}

.feature .ficon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .2), transparent);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.4rem
}

.feature h3 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: .3rem
}

.feature p {
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--text-muted);
  text-transform: uppercase
}

/* STATS */
.stats-section {
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  background: radial-gradient(circle at center, rgba(201, 168, 76, .06), transparent 60%)
}

.stat {
  text-align: center
}

.stat .num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 500
}

.stat .num,
.stat .plus {
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.stat .plus {
  font-size: 2rem
}

.stat p {
  margin-top: .5rem;
  color: var(--text-muted);
  letter-spacing: .2em;
  font-size: .72rem;
  text-transform: uppercase
}

/* STORY */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.story-grid img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--border-gold)
}

.story h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: .5rem
}

.story p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 1rem
}

@media(max-width:880px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }
}

/* TESTIMONIAL */
.testimonial {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--border-gold);
  padding: 3rem 2rem;
  backdrop-filter: blur(8px)
}

.stars {
  color: var(--gold-bright);
  letter-spacing: .4em;
  margin-bottom: 1.5rem
}

.quote {
  font-size: 1.5rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 1.5rem
}

.who {
  color: var(--gold);
  letter-spacing: .2em;
  font-size: .78rem;
  text-transform: uppercase
}

.dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem
}

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-gold);
  transition: all .3s;
  cursor: pointer
}

.dots i.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem
}

@media(max-width:880px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr)
  }
}

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

.gallery a {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.gallery a:hover img {
  transform: scale(1.15)
}

.gallery a::after {
  content: "@";
  position: absolute;
  inset: 0;
  background: rgba(251, 249, 246, .6);
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity .3s
}

.gallery a:hover::after {
  opacity: 1
}

/* NEWSLETTER */
.newsletter {
  text-align: center;
  position: relative;
  overflow: hidden
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 168, 76, .18), transparent 60%);
  z-index: -1
}

.newsletter h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1rem
}

.newsletter p.muted {
  margin-bottom: 2.5rem
}

.newsletter form {
  display: flex;
  gap: .75rem;
  max-width: 560px;
  margin: 0 auto;
  flex-wrap: wrap
}

.newsletter input {
  flex: 1;
  min-width: 220px;
  background: transparent;
  border: 1px solid var(--border-gold);
  padding: 1rem 1.2rem;
  color: var(--text-main);
  letter-spacing: .1em;
  font-family: inherit
}

.newsletter input:focus {
  outline: none;
  border-color: var(--gold)
}

.newsletter .fine {
  margin-top: 1.2rem;
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--text-muted);
  text-transform: uppercase
}

/* FOOTER */
footer {
  background: #F2EFEB;
  border-top: 1px solid var(--border-gold);
  padding: 5rem 1.5rem 2rem
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem
}

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

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

footer h3 {
  font-size: 1.8rem;
  letter-spacing: .2em;
  margin-bottom: .5rem
}

footer h4 {
  color: var(--gold-bright);
  letter-spacing: .3em;
  font-size: .7rem;
  margin-bottom: 1.2rem;
  font-weight: 500
}

footer ul li {
  margin-bottom: .7rem;
  font-size: .85rem;
  color: var(--text-muted)
}

footer ul li:hover {
  color: var(--gold-bright);
  cursor: pointer
}

footer ul.contact li {
  display: flex;
  gap: .5rem;
  align-items: flex-start
}

footer .socials {
  display: flex;
  gap: .6rem;
  margin-top: 1rem
}

footer .socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--text-muted);
  transition: all .3s
}

footer .socials a:hover {
  color: var(--gold-bright);
  border-color: var(--gold)
}

footer iframe {
  width: 100%;
  height: 130px;
  border: 1px solid var(--border-gold);
  margin-top: 1rem;
  filter: grayscale(1)
}

.foot-bottom {
  max-width: 1280px;
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-gold);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .72rem;
  color: var(--text-muted)
}

.foot-bottom .pay {
  color: var(--gold);
  letter-spacing: .2em
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all .9s cubic-bezier(.2, .7, .2, 1)
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s ease
}

.reveal-left.in {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s ease
}

.reveal-right.in {
  opacity: 1;
  transform: translateX(0)
}

/* CURSOR */
@media(hover:hover) and (pointer:fine) {

  .gold-cursor,
  .gold-cursor * {
    cursor: none !important
  }

  .gold-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #F2D06B, #C9A84C);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    box-shadow: 0 0 12px #C9A84C;
    transform: translate(-50%, -50%);
    transition: transform .12s ease
  }

  .gold-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .6);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%)
  }
}

@media(hover:none) {

  .gold-dot,
  .gold-ring {
    display: none
  }
}