:root {
  --black: #020B10;
  --navy: #212F52;
  --gold: #F3D4A4;
  --gm: #C7A35A;
  --white: #ffffff;
  --offwhite: #f5f0e8;
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none
}

/* CURSOR */
.cur {
  width: 6px;
  height: 6px;
  background: var(--gm);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%)
}

.cur-r {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(199, 163, 90, .5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .08s linear
}

.cur.big {
  width: 14px;
  height: 14px;
  background: rgba(199, 163, 90, .4)
}

.cur-r.big {
  width: 52px;
  height: 52px;
  border-color: rgba(199, 163, 90, .2)
}

/* SPARKLE CANVAS — fixed, behind everything */
#cvs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5
}

/* All content above canvas */
.above {
  position: relative;
  z-index: 2
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 80px;
  transition: background .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}

nav.sc {
  background: rgba(2, 11, 16, .96);
  border-color: rgba(199, 163, 90, .15);
  backdrop-filter: blur(20px)
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  height: 80px;
  overflow: hidden;
  flex-shrink: 0
}

.nav-logo {
  height: 36px;
  width: auto;
  display: block;
  opacity: .95;
  filter: drop-shadow(0 0 10px rgba(199, 163, 90, .25));
  flex-shrink: 0
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%)
}

.nav-link {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: color .3s;
  font-family: 'Poppins', sans-serif
}

.nav-link:hover {
  color: var(--gold)
}

.nav-btn {
  padding: 12px 36px;
  border: 1px solid var(--gm);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color .4s;
  font-family: 'Poppins', sans-serif
}

.nav-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.76, 0, .24, 1)
}

.nav-btn:hover {
  color: var(--black)
}

.nav-btn:hover::before {
  transform: scaleX(1)
}

.nav-btn span {
  position: relative;
  z-index: 1
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1828 0%, #020B10 60%)
}

.hero-glow {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 163, 90, .08) 0%, transparent 70%)
}

.hero-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2, 11, 16, 0.8) 0%, rgba(2, 11, 16, 0.4) 50%, transparent 100%);
  z-index: 2;
}

.hero-img-grad2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 0%, transparent 30%);
  z-index: 2;
}

.hero-c {
  position: relative;
  z-index: 3;
  padding-left: 160px;
  max-width: 680px
}

.h-over {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gm);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fu 1s .3s forwards;
  font-family: 'Poppins', sans-serif
}

.h-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 10vw, 120px);
  color: var(--white);
  font-weight: 300;
  line-height: .92;
  letter-spacing: 4px;
  margin-bottom: 4px;
  opacity: 0;
  animation: fu 1.3s .5s forwards
}

.h-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--gm);
  letter-spacing: 14px;
  text-transform: uppercase;
  margin-bottom: 48px;
  opacity: 0;
  animation: fu 1.3s .7s forwards
}

.h-divider {
  width: 60px;
  height: 1px;
  background: var(--gm);
  margin-bottom: 40px;
  opacity: 0;
  animation: fu .8s 1s forwards
}

.h-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, .7);
  line-height: 1.9;
  margin-bottom: 56px;
  font-style: italic;
  opacity: 0;
  animation: fu 1s 1.2s forwards;
  max-width: 440px
}

.h-body strong {
  color: var(--gold);
  font-weight: 400;
  font-style: normal
}

.h-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 56px;
  border: 1px solid var(--gm);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color .5s;
  opacity: 0;
  animation: fu .8s 1.5s forwards;
  font-family: 'Poppins', sans-serif
}

.h-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.76, 0, .24, 1)
}

.h-cta:hover {
  color: var(--black)
}

.h-cta:hover::before {
  transform: scaleX(1)
}

.h-cta span {
  position: relative;
  z-index: 1
}

.h-scroll {
  position: absolute;
  bottom: 36px;
  right: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  z-index: 10;
  animation: fu .8s 0s forwards
}

.h-scroll p {
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  font-family: 'Poppins', sans-serif
}

.h-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gm), transparent);
  animation: pulse 2.5s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: .25;
    height: 40px
  }

  50% {
    opacity: .7;
    height: 60px
  }
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

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

/* MARQUEE */
.mq {
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(199, 163, 90, .1);
  border-bottom: 1px solid rgba(199, 163, 90, .1)
}

.mq-t {
  display: flex;
  animation: mqa 35s linear infinite;
  white-space: nowrap
}

.mq-i {
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  padding: 0 40px;
  border-right: 1px solid rgba(199, 163, 90, .12);
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif
}

@keyframes mqa {
  from {
    transform: translateX(0)
  }

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

/* SECTIONS */
.si {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px
}

section {
  position: relative;
  z-index: 2
}

.s-label {
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gm);
  text-transform: uppercase;
  margin-bottom: 48px;
  font-family: 'Poppins', sans-serif
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s, transform .9s
}

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

.reveal2 {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s .2s, transform .9s .2s
}

.reveal2.on {
  opacity: 1;
  transform: translateY(0)
}

/* EXPERIENCE */
.exp {
  padding: 100px 0;
  text-align: center
}

.exp-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--white);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 36px;
  font-weight: 300;
  font-style: italic
}

.exp-q em {
  font-style: normal;
  color: var(--gm)
}

.exp-rule {
  width: 56px;
  height: 1px;
  background: var(--gm);
  margin: 0 auto 40px;
  opacity: .5
}

.exp-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 255, 255, .55);
  line-height: 1.9;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 32px
}

.exp-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(199, 163, 90, .5);
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif
}

/* TWO-COL FEATURE */
.feature {
  padding: 60px 0 50px
}

.feature .si {
  max-width: 1300px;
}

.f-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px
}

.f-cell {
  position: relative;
  overflow: hidden;
  height: 640px;
  cursor: none
}

.f-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.7);
  transition: filter .7s, transform 1s cubic-bezier(.25, .46, .45, .94);
  display: block
}

.f-cell:hover img {
  filter: brightness(.5);
  transform: scale(1.04)
}

.f-over {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  background: linear-gradient(to top, rgba(2, 11, 16, .95) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: all .5s
}

.f-cell:hover .f-over {
  opacity: 1;
  transform: translateY(0)
}

.f-over-t {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 8px
}

.f-over-s {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gm);
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif
}

.f-label {
  position: absolute;
  top: 28px;
  left: 28px;
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif
}

/* COOKIE FEATURE */
.cookie-s {
  padding: 10px 0 80px;
  background: rgba(33, 47, 82, .08);
}

.ck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 40px
}

.ck-img-wrap {
  position: relative;
  overflow: hidden
}

.ck-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.88)
}

.ck-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 11, 16, .25), transparent 60%)
}

.ck-text .s-label {
  margin-bottom: 32px
}

.ck-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.35;
  margin-bottom: 32px
}

.ck-h em {
  color: var(--gm);
  font-style: normal
}

.ck-p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 2;
  margin-bottom: 48px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300
}

.ck-list {
  list-style: none
}

.ck-list li {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(199, 163, 90, .1);
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Poppins', sans-serif
}

.ck-list li::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gm);
  flex-shrink: 0
}

/* SPECS */
.specs {
  padding: 60px 0 50px
}

.spec-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  border: 1px solid rgba(199, 163, 90, .1)
}

.spec-i {
  padding: 48px 36px;
  border-right: 1px solid rgba(199, 163, 90, .08);
  position: relative;
  overflow: hidden;
  transition: background .4s;
  cursor: none
}

.spec-i:last-child {
  border-right: none
}

.spec-i::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(33, 47, 82, .2);
  opacity: 0;
  transition: opacity .4s
}

.spec-i:hover::after {
  opacity: 1
}

.spec-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--gm);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.8
}

.spec-t {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px
}

.spec-d {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  font-family: 'Poppins', sans-serif
}

/* DELIVERY */
.deliv {
  padding: 10px 0 80px;
}

.deliv-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 40px
}

.deliv-img {
  position: relative;
  overflow: hidden
}

.deliv-img img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(.8)
}

.deliv-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.35;
  margin-bottom: 32px
}

.deliv-p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 2;
  margin-bottom: 44px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300
}

.deliv-list {
  list-style: none
}

.deliv-list li {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(199, 163, 90, .1);
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Poppins', sans-serif
}

.deliv-list li::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gm);
  flex-shrink: 0
}

/* FORM */
.form-s {
  padding: 80px 0 120px
}

.fh {
  text-align: center;
  margin-bottom: 80px
}

.f-ornament {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gm), transparent);
  margin: 0 auto 40px
}

.f-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 6px;
  margin-bottom: 16px
}

.f-sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif
}

.f-wrap {
  max-width: 660px;
  margin: 0 auto
}

.f-block {
  margin-bottom: 60px
}

.f-block-label {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gm);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(199, 163, 90, .12);
  font-family: 'Poppins', sans-serif
}

.field {
  margin-bottom: 28px;
  position: relative
}

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gm);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(199, 163, 90, 0.3);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  padding: 12px 0 14px;
  outline: none;
  letter-spacing: 1px;
  transition: all .4s;
  -webkit-appearance: none;
  appearance: none;
}

/* Make select and date inputs look like placeholders when empty */
.field select:invalid,
.field input[type="date"]:invalid,
.field input[type="date"]:not(:focus):not(:valid) {
  color: rgba(255, 255, 255, .2);
  font-style: italic;
  font-size: 20px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom: 1.5px solid var(--gm);
  background: rgba(199, 163, 90, 0.03);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, .2);
  font-style: italic;
  font-size: 20px;
}

input[name="WhatsApp Number"] {
  color: rgba(255, 255, 255, .2);
  font-style: italic;
}

input[name="WhatsApp Number"]:focus {
  color: var(--white);
  font-style: normal;
}

.field textarea {
  resize: none;
  height: 84px
}

.field select option {
  background: var(--black);
  color: var(--white)
}

.f-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gm);
  transition: width .5s cubic-bezier(.76, 0, .24, 1)
}

.field input:focus~.f-line,
.field textarea:focus~.f-line,
.field select:focus~.f-line {
  width: 100%
}

.tg {
  display: flex;
  gap: 2px
}

.tog {
  flex: 1;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  cursor: none;
  transition: all .4s;
  font-family: 'Poppins', sans-serif
}

.tog.on {
  border-color: var(--gm);
  color: var(--gold);
  background: rgba(199, 163, 90, .06)
}

.tog:hover:not(.on) {
  border-color: rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .7)
}

.gf {
  overflow: hidden;
  max-height: 0;
  transition: max-height .7s cubic-bezier(.76, 0, .24, 1), opacity .5s;
  opacity: 0
}

.gf.vis {
  max-height: 460px;
  opacity: 1
}

.f2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px
}

.f-footer {
  text-align: center;
  padding-top: 8px;
}

.f-note {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 40px;
  line-height: 2.2;
  font-family: 'Poppins', sans-serif
}

.f-note strong {
  color: rgba(199, 163, 90, .8);
  font-weight: 300
}

.f-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
}

.f-price-amt {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}

.f-price-currency {
  font-size: .70em;
  font-weight: 400;
  letter-spacing: 3px;
  vertical-align: middle;
}

.f-price-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, .45);
}

.f-submit {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: 1px solid var(--gm);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 7px;
  text-transform: uppercase;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color .5s
}

.f-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s cubic-bezier(.76, 0, .24, 1)
}

.f-submit:hover {
  color: var(--black)
}

.f-submit:hover::before {
  transform: scaleX(1)
}

.f-submit span {
  position: relative;
  z-index: 1
}

.f-lim {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .25);
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif
}

.field-hint {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--gm);
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.8;
  font-family: 'Poppins', sans-serif;
}

.conf {
  display: none;
  text-align: center;
  padding: 80px 0
}

.conf.on {
  display: block;
  animation: fu .8s forwards
}

.c-star {
  font-size: 36px;
  color: var(--gm);
  display: block;
  margin-bottom: 28px;
  animation: spin 12s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.c-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--white);
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 24px
}

.c-body {
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .5);
  line-height: 2.4;
  font-family: 'Poppins', sans-serif
}

/* FOOTER */
footer {
  padding: 64px;
  border-top: 1px solid rgba(199, 163, 90, .1);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2
}

.f-left {
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif
}

.f-center img {
  height: 48px;
  opacity: .7;
  filter: drop-shadow(0 0 8px rgba(199, 163, 90, .2))
}

.f-right {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .25);
  text-transform: uppercase;
  text-align: right;
  font-family: 'Poppins', sans-serif;
  line-height: 2
}

@media(max-width:900px) {
  nav {
    padding: 0 24px;
    height: 64px
  }

  .nav-links {
    display: none
  }

  .nav-logo {
    height: 28px
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 100px
  }

  .hero-c {
    padding-left: 28px
  }

  .hero-img {
    width: 100%;
    opacity: .35
  }

  .si {
    padding: 0 28px
  }

  .f-grid,
  .ck-grid,
  .deliv-g {
    grid-template-columns: 1fr
  }

  .f-cell {
    height: 300px
  }

  .f-over {
    opacity: 0;
    transform: translateY(20px);
    transition: all .8s cubic-bezier(.16, 1, .3, 1) .3s;
    background: linear-gradient(to top, rgba(2, 11, 16, .8) 0%, transparent 100%);
  }

  .on .f-over {
    opacity: 1;
    transform: translateY(0);
  }

  .f-cell img {
    filter: brightness(.6)
  }

  .ck-img-wrap img,
  .deliv-img img {
    height: 300px
  }

  .spec-g {
    grid-template-columns: 1fr 1fr
  }

  .spec-i {
    border-right: none;
    border-bottom: 1px solid rgba(199, 163, 90, .08)
  }

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

  footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 40px 24px
  }

  .f-right {
    text-align: center
  }
}

/* LUXURY MODAL STYLES */
.m-wrap {
  position: fixed;
  inset: 0;
  background: rgba(2, 11, 16, .9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1);
}

.m-wrap.on {
  opacity: 1;
  pointer-events: auto;
}

.m-content {
  width: 90%;
  max-width: 440px;
  background: var(--black);
  border: 1px solid rgba(199, 163, 90, .2);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.m-wrap.on .m-content {
  transform: translateY(0);
}

.m-ornament {
  width: 40px;
  height: 1px;
  background: var(--gm);
  margin: 0 auto 32px;
}

.m-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.m-body {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

.m-btn {
  background: transparent;
  border: 1px solid var(--gm);
  color: var(--gm);
  padding: 16px 32px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all .4s;
}

.m-btn:hover {
  background: var(--gm);
  color: var(--black);
}

/* TOAST NOTIFICATION */
.lux-toast {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  background: var(--black);
  border: 1px solid rgba(199, 163, 90, .35);
  padding: 20px 28px;
  z-index: 9999;
  opacity: 0;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
  width: 90%;
  max-width: 380px;
}

.lux-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.lux-toast-line {
  width: 28px;
  height: 1px;
  background: var(--gm);
  margin-bottom: 10px;
}

.lux-toast-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.lux-toast-body {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
}