@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Nunito:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold:        #c8972a;
  --gold-lt:     #f5e6c0;
  --gold-dk:     #9a7220;
  --forest:      #1e3d2f;
  --forest-lt:   #2d5c46;
  --ivory:       #faf8f3;
  --ink:         #181a18;
  --muted:       #7a7166;
  --border:      #e8e0d0;
  --white:       #ffffff;
  --rust:        #b84a2b;
  --sky:         #2b6cb0;
  --radius:      12px;
  --shadow-sm:   0 4px 16px rgba(0,0,0,.07);
  --shadow-md:   0 12px 40px rgba(0,0,0,.12);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.16);
  --trans:       all .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
}

h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; letter-spacing: -.02em; }

.eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-dk);
  display: block; margin-bottom: 12px;
}
.eyebrow::before { content: '— '; }
.eyebrow::after  { content: ' —'; }

/* TOPBAR */
#topbar {
  background: var(--forest);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  text-align: center;
}
#topbar .highlight { color: var(--gold); font-weight: 800; }
#topbar .code-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  margin: 0 4px;
}

/* NAVBAR */
#mainNav {
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
  z-index: 1050;
}
#mainNav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.navbar-brand .brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
}
.navbar-brand .brand-text span { color: var(--gold); }
.nav-link {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
  letter-spacing: .03em;
  padding: 8px 16px !important;
  transition: color .2s !important;
}
.nav-link:hover, .nav-link.active { color: var(--ink) !important; }
.btn-nav-cta {
  background: var(--ink) !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 9px 22px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .05em;
  transition: var(--trans) !important;
}
.btn-nav-cta:hover { background: var(--gold-dk) !important; }

/* HERO */
#hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  background: var(--forest);
  padding: 100px 6% 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 100%, rgba(200,151,42,.18) 0%, transparent 55%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.012) 40px, rgba(255,255,255,.012) 41px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,42,.18);
  border: 1px solid rgba(200,151,42,.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 28px;
  animation: fadeUp .7s ease both;
  position: relative; z-index:1;
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.4); }
}
.hero-h1 {
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 1.03;
  position: relative; z-index:1;
  animation: fadeUp .7s .1s ease both;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  max-width: 460px;
  margin-top: 22px;
  line-height: 1.75;
  position: relative; z-index:1;
  animation: fadeUp .7s .2s ease both;
}
.hero-ctas {
  display: flex; gap: 14px;
  margin-top: 40px; flex-wrap: wrap;
  position: relative; z-index:1;
  animation: fadeUp .7s .3s ease both;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 15px 34px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: .03em;
  transition: var(--trans);
  box-shadow: 0 6px 24px rgba(200,151,42,.35);
}
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  padding: 15px 34px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--trans);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 52px;
  position: relative; z-index:1;
  animation: fadeUp .7s .4s ease both;
}
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2.5px solid var(--forest);
  margin-left: -10px;
  font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--ink);
}
.avatar-stack .av:first-child { margin-left: 0; }
.trust-copy { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.5; }
.trust-copy strong { color: #fff; }

.hero-right { position: relative; overflow: hidden; }
.hero-right img.bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  display: block;
}
.hero-overlay-cards {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 40px; gap: 14px;
}
.hov-card {
 background: rgb(30 61 47 / 87%);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  animation: slideRight .8s ease both;
}
.hov-card:nth-child(2) { animation-delay: .15s; }
.hov-card:nth-child(3) { animation-delay: .30s; }
.hov-icon { font-size: 28px; flex-shrink: 0; }
.hov-title { font-size: 14px; font-weight: 700; color: #fff; }
.hov-sub   { font-size: 12px; color: rgba(255,255,255,.6); }

/* STATS */
#stats { background: var(--ink); border-top: 3px solid var(--gold); }
.stat-box {
  padding: 40px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .25s;
}
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: rgba(200,151,42,.06); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 700;
  color: var(--gold); line-height: 1;
  letter-spacing: -.03em;
}
.stat-lbl { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 5px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }

/* FEATURES */
#features { border-bottom: 1px solid var(--border); }
.feat-col {
  padding: 56px 44px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.feat-col:last-child { border-right: none; }
.feat-col:hover { background: #fff; }
.feat-col::after {
  content: '';
  position: absolute; bottom:0; left:0; right:0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.feat-col:hover::after { transform: scaleX(1); }
.feat-icon-wrap {
  width: 56px; height: 56px;
  background: var(--gold-lt); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 22px;
}
.feat-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.feat-desc { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.75; }

/* PRODUCTS */
#products { padding: 110px 0; }
.section-head { margin-bottom: 64px; }
.section-head h2 { font-size: clamp(38px, 5vw, 62px); font-weight: 700; }
.section-head h2 em { color: var(--gold); }

.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  height: 100%;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prod-img-wrap { position: relative; overflow: hidden; }
.prod-img-wrap img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.prod-card.featured .prod-img-wrap img { height: 320px; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.06); }
.prod-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
}
.badge-gold  { background: var(--gold); color: var(--ink); }
.badge-green { background: #2d5c46; color: #fff; }
.badge-red   { background: var(--rust); color: #fff; }
.badge-blue  { background: var(--sky); color: #fff; }
.prod-body { padding: 24px 24px 28px; }
.prod-cat  { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 8px; }
.prod-name { font-size: 20px; font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 10px; }
.prod-card.featured .prod-name { font-size: 26px; }
.prod-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--ink); }
.prod-price .strike { font-size: 14px; color: var(--muted); text-decoration: line-through; font-family: 'Nunito', sans-serif; font-weight: 400; margin-left: 6px; }
.btn-buy {
  background: var(--ink); color: #fff;
  border: none; padding: 10px 22px;
  border-radius: 6px; font-size: 13px;
  font-weight: 700; letter-spacing: .04em;
  cursor: pointer; transition: var(--trans);
}
.btn-buy:hover { background: var(--gold-dk); }
.prod-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 6px; }

/* WHY US */
#why { background: var(--forest); padding: 110px 0; position: relative; overflow: hidden; }
#why::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 5% 90%, rgba(200,151,42,.12) 0%, transparent 50%);
}
#why .section-head h2 { color: #fff; }
#why .eyebrow { color: var(--gold); }
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px; height: 100%;
  transition: var(--trans);
}
.why-card:hover { background: rgba(200,151,42,.08); border-color: rgba(200,151,42,.4); transform: translateY(-4px); }
.why-icon { font-size: 34px; margin-bottom: 18px; }
.why-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-desc  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.75; font-weight: 300; }

.big-cta-box {
  background: var(--gold); border-radius: 16px;
  padding: 56px 44px; text-align: center;
}
.big-cta-box .big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px; font-weight: 700;
  color: var(--ink); line-height: 1; letter-spacing: -.04em;
}
.big-cta-box .big-lbl { font-size: 16px; color: rgba(0,0,0,.6); margin-top: 8px; line-height: 1.5; }
.big-cta-box .big-lbl strong { color: var(--ink); }
.stars-lg { color: var(--ink); font-size: 22px; letter-spacing: 4px; margin-top: 18px; }
.rev-count { font-size: 13px; color: rgba(0,0,0,.45); margin-top: 6px; font-weight: 500; }

/* TESTIMONIALS */
#testimonials { padding: 110px 0; background: #fff; }
.testi-card {
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; height: 100%;
  transition: var(--trans);
}
.testi-card:hover { border-color: var(--gold); box-shadow: 0 10px 32px rgba(0,0,0,.07); }
.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; line-height: .8;
  color: var(--gold-lt); font-weight: 700; margin-bottom: 14px;
}
.testi-text { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 28px; font-weight: 300; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--ink); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-loc  { font-size: 12px; color: var(--muted); }
.testi-stars{ color: var(--gold); font-size: 12px; letter-spacing: 2px; }

/* CTA BAND */
#ctaBand { background: #213e2e; padding: 50px 0; position: relative; overflow: hidden; }
#ctaBand::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,151,42,.1) 0%, transparent 60%);
}
#ctaBand h2 { color: #fff; font-size: clamp(32px, 4vw, 54px); }
#ctaBand h2 em { color: var(--gold); }
#ctaBand p { color: rgba(255,255,255,.55); font-size: 16px; font-weight: 300; max-width: 500px; margin-top: 14px; }

/* FOOTER */
footer { background: #0a0f0a; color: rgba(255,255,255,.5); padding: 80px 0 36px; }
.footer-brand .brand-text { font-size: 32px; font-family: 'Cormorant Garamond', serif; font-weight: 700; color: #fff; }
.footer-brand .brand-text span { color: var(--gold); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 14px; line-height: 1.8; font-weight: 300; }
.footer-col h5 { font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 22px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-divider { border-color: rgba(255,255,255,.07); }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none;
  color: rgba(255,255,255,.5); transition: var(--trans);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.payment-badge {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 6px 14px;
  font-size: 13px; color: rgba(255,255,255,.5);
  font-weight: 600; letter-spacing: .04em;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width:991px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .feat-col { border-right: none; border-bottom: 1px solid var(--border); }
  .feat-col:last-child { border-bottom: none; }
}
@media (max-width:575px) {
  .hero-left { padding: 70px 6% 60px; }
  .hero-ctas { flex-direction: column; }
  .btn-gold, .btn-ghost { width: 100%; text-align: center; }
}
