/* =====================================================
   FACETRA — PREMIUM MASTER STYLESHEET (PART 1)
   ===================================================== */

/* ---------- ROOT COLORS FROM  ---------- */
:root{
  --gold1:#f1d27a;
  --gold2:#c9a24d;
  --gold3:#8f6b2a;
  --dark:#050806;
  --dark2:#0b120f;
  --card:#0f1612;
  --text:#d7dbd8;
  --muted:#9ea4a0;
}

/* ---------- RESET ---------- */
*{margin:0;padding:0;box-sizing:border-box}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* ---------- BODY ---------- */
body{
  font-family:Inter,sans-serif;
  background:
    radial-gradient(circle at top,#141f1a,#050806),
    repeating-linear-gradient(60deg,rgba(255,255,255,.015),rgba(255,255,255,.015) 1px,transparent 1px,transparent 12px);
  color:var(--text);
  overflow-x:hidden;
}

/* =====================================================
   HEADER
   ===================================================== */

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:linear-gradient(to bottom,rgba(5,8,6,.98),rgba(5,8,6,.85));
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(201,162,77,.25);
}

.header-inner{
  max-width:1400px;
  margin:auto;
  padding:16px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* BRAND */
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand img{   height:34px;   width:auto; }
.brand-name{
  font-family:Cinzel,serif;
  color:var(--gold2);
  font-size:22px;
  letter-spacing:1.6px;
}
.brand-tag{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.8px;
}

/* NAV */
.main-nav a{
  margin-left:34px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1.8px;
  color:#d0d0d0;
  position:relative;
  padding-bottom:6px;
  transition:.3s;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:1px;
  background:linear-gradient(90deg,var(--gold1),var(--gold2));
  transition:.35s;
}
.main-nav a:hover,
.main-nav a.active{color:var(--gold2)}
.main-nav a:hover::after,
.main-nav a.active::after{width:100%}

/* MOBILE */
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.nav-toggle span{
  width:26px;height:2px;
  background:var(--gold2);
}

/* MOBILE NAV */
.mobile-nav{
  position:fixed;
  inset:0;
  background:#050806;
  padding:120px 40px;
  display:flex;
  flex-direction:column;
  gap:26px;
  transform:translateX(100%);
  transition:.45s ease;
  z-index:998;
}
.mobile-nav.open{transform:translateX(0)}
.mobile-nav a{
  font-size:18px;
  letter-spacing:1.4px;
  text-transform:uppercase;
}

/* =====================================================
   HERO
   ===================================================== */
.hero-logo{
  width: 320px;
  max-width: 85%;
  margin: 0 auto 26px;
  filter: drop-shadow(0 0 18px rgba(201,162,77,.25));
}

.hero-section{
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 20px;
}

.hero-inner{
  max-width:900px;
  text-align:center;
}

.hero-{
  width:130px;
  margin:0 auto 26px;
  filter:drop-shadow(0 0 18px rgba(201,162,77,.25));
}

.hero-title{
  font-family:Cinzel,serif;
  font-size:64px;
  letter-spacing:3px;
  color:var(--gold2);
}

.hero-subtitle{
  margin-top:8px;
  font-size:18px;
  letter-spacing:1px;
  color:#dcdcdc;
}

.hero-description{
  margin:28px auto 36px;
  font-size:15px;
  line-height:1.9;
  max-width:760px;
  color:#cfd4d1;
}

/* BUTTONS */
.hero-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.btn-outline-gold{
  border:1px solid var(--gold2);
  padding:14px 34px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--gold2);
}

.btn-gold-glow{
  background:linear-gradient(135deg,var(--gold1),var(--gold2),var(--gold3));
  color:#111;
  padding:14px 36px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  transition:.35s;
  box-shadow:0 0 0 rgba(201,162,77,0);
}
.btn-gold-glow:hover{
  transform:translateY(-3px);
  box-shadow:0 0 22px rgba(201,162,77,.55);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

.fade-up{
  opacity:0;
  transform:translateY(30px);
  transition:1s ease;
}
.fade-up.show{
  opacity:1;
  transform:translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media(max-width:900px){
  .main-nav{display:none}
  .nav-toggle{display:flex}
  .header-inner{padding:14px 22px}
  .hero-title{font-size:48px}
}
/* =====================================================
   PART 2 — GEMSTONE / SOURCING / CERTIFICATION SECTIONS
   ===================================================== */

/* LUX DIVIDER */
.lux-divider{
  height:1px;
  margin:60px auto;
  max-width:900px;
  background:linear-gradient(90deg,transparent,var(--gold2),transparent);
}

/* SECTION HEADER */
.section-header{
  text-align:center;
  max-width:820px;
  margin:0 auto 60px;
}
.section-header h2{
  font-family:Cinzel,serif;
  font-size:36px;
  color:var(--gold2);
  margin-bottom:14px;
}
.section-header p{
  font-size:15px;
  line-height:1.8;
  color:#cfd4d1;
}

/* ================= GEM CARDS ================= */

.gem-section{
  padding:110px 40px;
}

.gem-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:36px;
}

.gem-card{
  background:linear-gradient(180deg,#0c1310,#070b09);
  border:1px solid rgba(201,162,77,.28);
  padding:46px 30px;
  text-align:center;
  transition:.4s ease;
  position:relative;
}

.gem-card::before{
  content:"";
  position:absolute;
  inset:0;
  border:1px solid transparent;
  transition:.4s;
}

.gem-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 26px rgba(201,162,77,.35);
}

.gem-icon{
  width:60px;
  height:60px;
  border-radius:50%;
  background:rgba(201,162,77,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.gem-icon svg{
  width:30px;
  height:30px;
  stroke:var(--gold2);
  fill:none;
  stroke-width:1.5;
}

.gem-card h3{
  font-family:Cinzel,serif;
  color:var(--gold2);
  margin-bottom:10px;
  font-size:20px;
}

.gem-card p{
  font-size:14px;
  line-height:1.7;
  color:#cfd4d1;
}

/* ================= SOURCING ================= */

.source-section{
  padding:120px 40px;
  background:linear-gradient(to bottom,#050806,#0b120f);
}

.source-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}

.source-text h2{
  font-family:Cinzel,serif;
  font-size:34px;
  color:var(--gold2);
  margin-bottom:18px;
}

.source-text p{
  font-size:15px;
  line-height:1.9;
  margin-bottom:16px;
}

.source-points ul{
  list-style:none;
}

.source-points li{
  margin-bottom:14px;
  font-size:15px;
  color:#e0d7b5;
}

/* ================= CERTIFICATION ================= */

.cert-section{
  padding:120px 40px;
}

.cert-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.cert-card{
  background:var(--card);
  border:1px solid rgba(201,162,77,.25);
  padding:40px 30px;
  text-align:center;
  transition:.35s;
}

.cert-card:hover{
  box-shadow:0 0 22px rgba(201,162,77,.3);
  transform:translateY(-6px);
}

.cert-card h4{
  font-family:Cinzel,serif;
  color:var(--gold2);
  margin-bottom:10px;
  font-size:18px;
}

.cert-card p{
  font-size:14px;
  line-height:1.7;
}

/* RESPONSIVE */
@media(max-width:900px){
  .source-grid{
    grid-template-columns:1fr;
  }
}
/* =====================================================
   PART 3 — PROCESS / INVESTOR TRUST / CTA
   ===================================================== */

/* ================= PROCESS ================= */

.process-section{
  padding:120px 40px;
  background:linear-gradient(to bottom,#070b09,#050806);
}

.process-line{
  max-width:1200px;
  margin:80px auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
}

.process-step{
  position:relative;
  padding:40px 30px;
  background:var(--card);
  border:1px solid rgba(201,162,77,.25);
  transition:.35s;
}

.process-step:hover{
  transform:translateY(-8px);
  box-shadow:0 0 24px rgba(201,162,77,.3);
}

.step-no{
  position:absolute;
  top:18px;
  right:20px;
  font-family:Cinzel,serif;
  font-size:28px;
  color:rgba(201,162,77,.35);
}

.process-step h4{
  font-family:Cinzel,serif;
  color:var(--gold2);
  margin-bottom:10px;
}

.process-step p{
  font-size:14px;
  line-height:1.7;
}

/* ================= INVESTOR ================= */

.investor-section{
  padding:130px 40px;
}

.investor-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
}

.investor-text h2{
  font-family:Cinzel,serif;
  font-size:36px;
  color:var(--gold2);
  margin-bottom:18px;
}

.investor-text p{
  font-size:15px;
  line-height:1.9;
  margin-bottom:16px;
}

.investor-stats{
  display:grid;
  gap:26px;
}

.stat-box{
  background:linear-gradient(135deg,#0c1310,#060a08);
  border:1px solid rgba(201,162,77,.35);
  padding:34px 28px;
  text-align:center;
}

.stat-box h3{
  font-family:Cinzel,serif;
  color:var(--gold1);
  font-size:32px;
  margin-bottom:6px;
}

.stat-box span{
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#d6d0b0;
}

/* ================= CTA ================= */

.cta-section{
  padding:140px 40px;
  background:
    radial-gradient(circle at center,rgba(201,162,77,.12),transparent 60%),
    linear-gradient(to bottom,#050806,#070b09);
}

.cta-box{
  max-width:900px;
  margin:0 auto;
  text-align:center;
  border:1px solid rgba(201,162,77,.35);
  padding:70px 50px;
  background:linear-gradient(180deg,#0c1310,#070b09);
}

.cta-box h2{
  font-family:Cinzel,serif;
  color:var(--gold2);
  font-size:34px;
  margin-bottom:14px;
}

.cta-box p{
  font-size:15px;
  line-height:1.8;
  margin-bottom:30px;
}

.cta-actions{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

/* RESPONSIVE */
@media(max-width:900px){
  .investor-grid{
    grid-template-columns:1fr;
  }
  .cta-box{
    padding:50px 26px;
  }
}
/* =====================================================
  /* =====================================================
   LUXURY FOOTER
   ===================================================== */

.lux-footer{
  border-top:1px solid rgba(201,162,77,.35);
  padding:60px 40px 24px;   /* reduced height */
  background:linear-gradient(to bottom,#060a08,#020403);
}

.footer-inner{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:50px;   /* tighter */
}

/* BRAND */

.footer-{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}

.footer- img{
  width:48px;
}

.footer- span{
  font-family:Cinzel,serif;
  font-size:20px;
  color:var(--gold);
  letter-spacing:1px;
}

.footer-brand p{
  font-size:14px;
  line-height:1.9;
  opacity:.85;
}

/* LINKS */

.footer-links h4,
.footer-contact h4{
  font-family:Cinzel,serif;
  color:var(--gold);
  font-size:18px;
  margin-bottom:18px;
}

.footer-links a{
  display:block;
  margin-bottom:10px;
  font-size:14px;
  opacity:.85;
  transition:.3s;
}

.footer-links a:hover{
  color:var(--gold);
  transform:translateX(6px);
}

/* CONTACT */

.contact-item{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
  font-size:14px;
  opacity:.9;
}

.contact-item svg{
  width:18px;
  height:18px;
  stroke:var(--gold);
  fill:none;
  stroke-width:1.6;
}

/* BOTTOM */

.footer-bottom{
  text-align:center;
  font-size:12px;
  opacity:.55;
  margin-top:36px;
}


/* MOBILE */

@media(max-width:900px){

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

  .lux-footer{
    padding:70px 24px 26px;
  }

}

/* =====================================================
   PART 5 — PAGE TRANSITIONS
   ===================================================== */

.page{
  animation:pageFadeIn .6s ease;
}

@keyframes pageFadeIn{
  from{opacity:0}
  to{opacity:1}
}

.fade-out{
  opacity:0;
  transition:.35s ease;
}
/* ===============================
   GLOBAL PAGE LAYOUT FIX
================================ */

body.page{
  background:radial-gradient(circle at top,#121a16,#050806);
  min-height:100vh;
}

.page-wrap{
  width:100%;
  overflow:hidden;
}

/* ===============================
   HERO INNER PAGES
================================ */

.hero-inner{
  padding:140px 20px 90px;
  max-width:1200px;
  margin:0 auto;
}

.hero-inner h2{
  font-size:48px;
  letter-spacing:1.4px;
}

.hero-inner .hero-text{
  max-width:820px;
  margin:22px auto 0;
}
/* =====================================================
   ABOUT PAGE — AUTHORITY LAYOUT
   ===================================================== */

.about-hero{
  padding:160px 20px 110px;
  text-align:center;
}

.about-hero h1{
  font-family:Cinzel,serif;
  font-size:54px;
  letter-spacing:2px;
  color:var(--gold2);
}

.about-hero p{
  max-width:820px;
  margin:18px auto 0;
  font-size:16px;
  line-height:1.9;
  color:#cfd4d1;
}

/* CONTENT WRAPPER */

.about-wrapper{
  max-width:1100px;
  margin:0 auto;
  padding:90px 24px;
}

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

.about-section h2{
  font-family:Cinzel,serif;
  font-size:34px;
  color:var(--gold2);
  margin-bottom:16px;
}

.about-section p{
  font-size:16px;
  line-height:1.9;
  color:#d2d7d4;
}

/* ICON BLOCK GRID */

.about-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:36px;
}

.about-card{
  background:linear-gradient(180deg,#0c1310,#070b09);
  border:1px solid rgba(201,162,77,.28);
  padding:44px 30px;
  transition:.4s ease;
}

.about-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 26px rgba(201,162,77,.35);
}

.about-card h3{
  font-family:Cinzel,serif;
  color:var(--gold2);
  margin-bottom:10px;
  font-size:20px;
}

.about-card p{
  font-size:14px;
  line-height:1.8;
}

/* TIMELINE / PROCESS */

.about-process{
  max-width:1100px;
  margin:0 auto;
  padding:80px 24px 120px;
}

.process-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
}

.process-box{
  position:relative;
  padding:40px 30px;
  background:var(--card);
  border:1px solid rgba(201,162,77,.25);
  transition:.35s;
}

.process-box:hover{
  transform:translateY(-8px);
  box-shadow:0 0 24px rgba(201,162,77,.3);
}

.process-no{
  position:absolute;
  top:18px;
  right:20px;
  font-family:Cinzel,serif;
  font-size:28px;
  color:rgba(201,162,77,.35);
}

.process-box h4{
  font-family:Cinzel,serif;
  color:var(--gold2);
  margin-bottom:10px;
}

.process-box p{
  font-size:14px;
  line-height:1.8;
}

/* CLIENT TYPES */

.about-clients{
  background:linear-gradient(to bottom,#050806,#0b120f);
  padding:120px 24px;
}

.client-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:36px;
}

/* FINAL CTA */

.about-cta{
  padding:140px 24px;
  background:
    radial-gradient(circle at center,rgba(201,162,77,.12),transparent 60%),
    linear-gradient(to bottom,#050806,#070b09);
}

.about-cta-box{
  max-width:900px;
  margin:0 auto;
  text-align:center;
  border:1px solid rgba(201,162,77,.35);
  padding:70px 50px;
  background:linear-gradient(180deg,#0c1310,#070b09);
}

.about-cta-box h2{
  font-family:Cinzel,serif;
  color:var(--gold2);
  font-size:34px;
  margin-bottom:14px;
}

.about-cta-box p{
  font-size:15px;
  line-height:1.9;
  margin-bottom:30px;
}


/* ===============================
   AUTHORITY / CONTENT WRAPPER
================================ */

.authority-wrapper{
  max-width:1100px;
  margin:0 auto;
  padding:80px 24px 80px;
}

.authority-section{
  margin-bottom:70px;
}

.authority-section h2{
  font-size:28px;
  margin-bottom:16px;
}

.authority-section p,
.authority-list li{
  font-size:16px;
  line-height:1.9;
}

/* ===============================
   CTA SECTION FIX
================================ */

.trust{
  max-width:1200px;
  margin:0 auto;
  padding:110px 24px;
}

/* ===============================
   LUX DIVIDER FULL WIDTH
================================ */

.lux-divider{
  width:100%;
  height:1px;
  background:linear-gradient(to right,transparent,var(--gold),transparent);
  margin:40px 0;
}

/* ===============================
   FOOTER FULL WIDTH FIX
================================ */

.lux-footer{
  width:100%;
  background:linear-gradient(to top,#050806,#0b110e);
  border-top:1px solid rgba(201,162,77,.25);
}

.lux-footer img{
  max-height:36px;
}


.footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding:80px 24px 60px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:60px;
}

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

.footer- img{
  height:34px;   /* same as header logo */
  width:auto;
}


.footer- span{
  font-family:Cinzel,serif;
  color:var(--gold);
  font-size:20px;
  letter-spacing:1px;
}

.footer-links h4,
.footer-contact h4{
  font-family:Cinzel,serif;
  color:var(--gold);
  margin-bottom:16px;
  font-size:18px;
}

.footer-links a{
  display:block;
  margin-bottom:8px;
  opacity:.85;
  transition:.3s;
}

.footer-links a:hover{
  color:var(--gold);
  transform:translateX(4px);
}

.footer-contact .contact-item{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.footer-contact svg{
  width:18px;
  height:18px;
  stroke:var(--gold);
  fill:none;
  stroke-width:1.6;
}

.footer-bottom{
  text-align:center;
  padding:18px;
  font-size:13px;
  opacity:.6;
  border-top:1px solid rgba(201,162,77,.15);
}

/* ===============================
   SCROLL ANIMATION FIX
================================ */

.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:1s cubic-bezier(.2,.8,.2,1);
}

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

/* ===============================
   MOBILE FIX
================================ */

@media(max-width:900px){

  .hero-inner h2{font-size:36px}

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

  .trust{
    padding:80px 20px;
  }

}
/* ===============================
   AUTHORITY LIST
================================ */

.authority-list{
  margin-top:18px;
  padding-left:0;
  list-style:none;
}

.authority-list li{
  position:relative;
  padding-left:26px;
  margin-bottom:10px;
  font-size:15px;
  line-height:1.7;
  color:#dcd6b8;
}

.authority-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold1),var(--gold2));
}

/* ===============================
   CERT HERO TIGHTER
================================ */

.hero-section .hero-description{
  max-width:820px;
  margin:24px auto 0;
}
/* ===============================
   CONTACT PAGE
================================ */

.contact-section{
  padding:120px 40px;
  background:linear-gradient(to bottom,#050806,#0b120f);
}

.contact-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:flex-start;
}

.contact-info h2{
  font-family:Cinzel,serif;
  color:var(--gold2);
  font-size:34px;
  margin-bottom:18px;
}

.contact-info p{
  font-size:15px;
  line-height:1.9;
  margin-bottom:26px;
}

.contact-item{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
  font-size:15px;
  color:#e6dfc0;
}

.contact-hours{
  margin-top:28px;
  font-size:14px;
  line-height:1.7;
  color:#d8d2b0;
}

.contact-cta{
  background:linear-gradient(180deg,#0c1310,#070b09);
  border:1px solid rgba(201,162,77,.35);
  padding:50px 40px;
}

.contact-cta h3{
  font-family:Cinzel,serif;
  color:var(--gold2);
  font-size:26px;
  margin-bottom:14px;
}

.contact-cta p{
  font-size:15px;
  line-height:1.9;
  margin-bottom:26px;
}

.contact-note{
  margin-top:22px;
  font-size:13px;
  opacity:.75;
}

/* ICON STYLE */

.icon{
  width:20px;
  height:20px;
  stroke:var(--gold2);
  fill:none;
  stroke-width:1.6;
}

/* RESPONSIVE */

@media(max-width:900px){

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

  .contact-section{
    padding:90px 24px;
  }

}
/* ===============================
   COLLECTION PAGE
================================ */

.collection-section{
  padding:120px 40px;
  background:linear-gradient(to bottom,#050806,#0b120f);
}

.collection-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:40px;
}

.collection-card{
  background:linear-gradient(180deg,#0c1310,#070b09);
  border:1px solid rgba(201,162,77,.35);
  padding:44px 34px;
  transition:.4s ease;
}

.collection-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 26px rgba(201,162,77,.35);
}

.collection-card h2{
  font-family:Cinzel,serif;
  color:var(--gold2);
  font-size:24px;
  margin-bottom:14px;
}

.collection-card p{
  font-size:15px;
  line-height:1.9;
  margin-bottom:14px;
}

.collection-card ul{
  list-style:none;
  margin-bottom:22px;
}

.collection-card li{
  font-size:14px;
  margin-bottom:6px;
  color:#e4ddb9;
}

/* MOBILE */

@media(max-width:900px){
  .collection-section{
    padding:90px 24px;
  }
}
/* ===============================
   WHY FACETRA PAGE
================================ */

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px;
  margin:60px 0;
}

.why-card{
  background:linear-gradient(180deg,#0c1310,#070b09);
  border:1px solid rgba(201,162,77,.35);
  padding:44px 34px;
  transition:.4s ease;
}

.why-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 26px rgba(201,162,77,.35);
}

.why-card h3{
  font-family:Cinzel,serif;
  color:var(--gold2);
  font-size:22px;
  margin-bottom:12px;
}

.why-card p{
  font-size:15px;
  line-height:1.9;
  margin-bottom:14px;
}

.why-card ul{
  list-style:none;
}

.why-card li{
  font-size:14px;
  margin-bottom:6px;
  color:#e4ddb9;
}

.authority-list{
  list-style:none;
  margin-top:20px;
}

.authority-list li{
  font-size:15px;
  margin-bottom:10px;
  color:#e8e0b5;
}
