*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Georgia", serif;
}

.navbar{
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.05);
}

body{
  background:#090909;
  color:#fff;
  overflow-x:hidden;
}

/* NAVBAR */
.navbar,
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
  z-index:1000;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(10px);
}

.logo{
  display:flex;
  flex-direction:column;
  color:#d6c7a6;
  line-height:1;
  font-family:'Cormorant Garamond', serif;
  font-size:28px;
  font-weight:500;
  letter-spacing:.5px;
}

.logo span{
  margin-top:6px;
  font-size:11px;
  letter-spacing:4px;
  opacity:.75;
  text-transform:uppercase;
}

nav a,
header a{
  margin-left:30px;
  text-decoration:none;
  color:#d6c7a6;
  font-size:12px;
  letter-spacing:2px;
  transition:.3s;
}

nav a:hover{
  color:white;

  text-shadow:
  0 0 12px rgba(214,199,166,.5);
}

.admin-link{
  border:1px solid rgba(214,199,166,.55);
  border-radius:999px;
  padding:9px 14px;
  background:rgba(214,199,166,.08);
}

.admin-link:hover{
  background:#d6c7a6;
  color:#090909;
  text-shadow:none;
}

@media(max-width:760px){
  .navbar,header{padding:14px 18px;align-items:flex-start}
  .navbar nav,header nav{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px;max-width:66%}
  .navbar nav a,header nav a{margin-left:0;font-size:9px;letter-spacing:1px}
  .admin-link{padding:7px 10px}
}

/* HOME HERO
.hero{
  height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.65)),
    url("main_wallpaper.png")
    center/cover no-repeat;

  display:flex;
  align-items:center;
  padding-left:90px;
} */

.hero-content{
  max-width:650px;
  position:relative;
  z-index:2;
}

.small{
  color:#cbb89d;
  letter-spacing:4px;
  font-size:11px;
  margin-bottom:20px;
}

.hero h1{
  font-size:88px;
  line-height:.92;
  font-weight:500;
}

.hero h1 span{
  color:#cbb89d;
  font-style:italic;
}

.desc{
  margin-top:25px;
  color:#aaa;
  max-width:420px;
  line-height:1.7;
  font-size:15px;
}

.btn{
  display:inline-block;
  margin-top:35px;
  padding:14px 28px;
  border:1px solid #cbb89d;
  color:#cbb89d;
  text-decoration:none;
  letter-spacing:2px;
  font-size:12px;
  transition:.3s;
}

.btn:hover{
  background:#cbb89d;
  color:black;
}

/* COLLECTION PAGE */
.collection-page{
  background:#0a0a0a;
}

.collection-hero{
  height:75vh;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.72)),
    url("https://images.unsplash.com/photo-1516574187841-cb9cc2ca948b?q=80&w=1600&auto=format&fit=crop")
    center/cover no-repeat;
  display:flex;
  align-items:center;
  padding-left:90px;
}

.collection-content{
  max-width:650px;
}

.collection-title{
  font-size:95px;
  line-height:.9;
  margin-top:20px;
  font-weight:500;
}

.collection-desc{
  margin-top:25px;
  color:#aaa;
  max-width:500px;
  line-height:1.8;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
  padding:70px;
}

.category-card{
  position:relative;
  height:520px;
  overflow:hidden;
  border:1px solid #1f1f1f;
  text-decoration:none;
  background:#111;
  transition:.4s;
  border-radius:18px;
}

.category-card:hover{
  transform:translateY(-10px);
  border-color:#cbb89d;
}

.category-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}

.category-card:hover img{
  transform:scale(1.08);
}

.category-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.15));
}

.category-info{
  position:absolute;
  left:30px;
  bottom:35px;
  z-index:2;
}

.category-small{
  color:#cbb89d;
  font-size:11px;
  letter-spacing:3px;
  margin-bottom:12px;
}

.category-info h2{
  font-size:48px;
  margin-bottom:12px;
  color:white;
}

.category-text{
  color:#d0d0d0;
  line-height:1.6;
  max-width:260px;
}

/* STATUE / KEYCHAIN PAGE */
.statue-page{
  background:#090909;
  color:white;
}

.statue-hero{
  padding:150px 70px 60px;
  text-align:center;
}

.statue-hero h1{
  font-size:70px;
  color:#d6c7a6;
  line-height:1;
}

.statue-hero p{
  color:#aaa;
  max-width:650px;
  margin:15px auto;
  line-height:1.7;
}

.statue-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
  padding:40px 70px 90px;
}

.statue-thumb{
  background:#111;
  border:1px solid #222;
  cursor:pointer;
  overflow:hidden;
  transition:.4s;
  text-align:center;
  border-radius:18px;
}

.statue-thumb:hover{
  transform:translateY(-10px);
  border-color:#cbb89d;
  box-shadow:0 0 30px rgba(203,184,157,.18);
}

.statue-thumb img{
  width:100%;
  height:380px;
  object-fit:contain;
  background:#181818;
  padding:25px;
}

.statue-thumb h2{
  padding:22px;
  color:#d6c7a6;
  font-size:28px;
}

/* MODAL */
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
  padding:30px;
  animation:fadeIn .3s ease;
}

@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

.modal-box{
  background:#0f0f0f;
  border:1px solid #333;
  max-width:1200px;
  width:100%;
  max-height:92vh;
  overflow:auto;
  position:relative;
  padding:35px;
  border-radius:20px;
  box-shadow:0 0 45px rgba(0,0,0,.7);
}

.close-btn{
  position:absolute;
  top:18px;
  right:18px;
  width:46px;
  height:46px;
  font-size:30px;
  background:#cbb89d;
  color:black;
  border:none;
  cursor:pointer;
  z-index:5;
  border-radius:10px;
}

.modal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
}

.main-product-img{
  width:100%;
  height:520px;
  object-fit:contain;
  background:#181818;
  padding:25px;
  border:1px solid #444;
  border-radius:16px;
}

.angle-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:12px;
}

.angle-row img{
  height:120px;
  width:100%;
  object-fit:contain;
  cursor:pointer;
  border:1px solid #333;
  background:#181818;
  transition:.3s;
  padding:10px;
  border-radius:12px;
}

.angle-row img:hover{
  border-color:#cbb89d;
  box-shadow:0 0 18px rgba(203,184,157,.25);
}

.detail-info h2{
  font-size:50px;
  color:#fff;
  margin-bottom:15px;
  line-height:1;
}

.detail-info p{
  color:#ccc;
  line-height:1.7;
  margin-bottom:8px;
}

.detail-info label{
  display:block;
  color:#cbb89d;
  margin-top:18px;
  margin-bottom:8px;
}

.detail-info select,
.detail-info input{
  width:100%;
  padding:15px;
  background:#1a1a1a;
  color:white;
  border:1px solid #333;
  margin-bottom:12px;
  border-radius:12px;
}

.price{
  color:#cbb89d !important;
  font-size:28px;
  font-weight:bold;
}

.warning-text{
  color:#ff7777;
  font-size:13px;
  margin-bottom:12px;
}

/* BUTTONS */
button{
  width:100%;
  padding:15px;
  background:#cbb89d;
  border:none;
  cursor:pointer;
  font-weight:bold;
  letter-spacing:2px;
  transition:.3s;
  border-radius:12px;
}

button:hover{
  background:white;
  color:black;
  box-shadow:0 0 20px rgba(203,184,157,.35);
}

.whatsapp-btn{
  margin-top:10px;
  background:#25D366;
  color:black;
}

.whatsapp-btn:hover{
  background:white;
  color:black;
}

/* CART PAGE */
.title{
  text-align:center;
  margin-top:140px;
  margin-bottom:40px;
  font-size:45px;
  color:#cbb89d;
  letter-spacing:3px;
}

#cartBox{
  max-width:700px;
  margin:20px auto;
  padding:20px;
}

.cartItem{
  background:#111;
  border:1px solid #222;
  padding:20px;
  margin-bottom:20px;
  border-radius:16px;
}

.cartItem p{
  margin-bottom:10px;
}

#total{
  text-align:center;
  color:#cbb89d;
  margin:20px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .navbar,
  header{
    padding:20px;
  }

  nav a,
  header a{
    margin-left:15px;
    font-size:10px;
  }

  .hero,
  .collection-hero{
    padding:30px;
  }

  .hero h1,
  .collection-title{
    font-size:58px;
  }

  .statue-hero h1{
    font-size:50px;
  }

  .category-grid,
  .statue-list{
    padding:25px;
  }

  .category-card{
    height:420px;
  }

  .modal-grid{
    grid-template-columns:1fr;
  }

  .main-product-img{
    height:350px;
  }
}

@media(max-width:600px){
  .navbar,
  header{
    flex-direction:column;
    gap:15px;
  }

  .hero h1,
  .collection-title{
    font-size:46px;
  }

  .title{
    font-size:34px;
  }

  .statue-hero{
    padding:150px 25px 40px;
  }

  .statue-thumb img{
    height:320px;
  }

  .modal{
    padding:10px;
  }

  .modal-box{
    padding:18px;
  }

  .detail-info h2{
    font-size:36px;
  }

  
}
/* =========================
   PROFESSIONAL CART PAGE
========================= */

.cart-page{
  background:#070707;
  color:white;
  min-height:100vh;
}

/* HERO */
.cart-hero{
  padding:120px 70px 40px;
  text-align:center;
}

.cart-hero h1{
  font-size:90px;
  color:#d6c7a6;
  margin-top:10px;
  line-height:1;
}

.cart-hero p{
  color:#9f9f9f;
  margin-top:18px;
  font-size:16px;
  letter-spacing:.5px;
}

/* LAYOUT */
.cart-layout{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:35px;
  padding:20px 70px 90px;
  align-items:start;
}

/* LEFT */
.cart-left{
  display:flex;
  flex-direction:column;
  gap:25px;
}

/* CARD */
.cart-card{
  display:grid;
  grid-template-columns:80px 1fr 140px;
  gap:25px;
  align-items:center;

  background:linear-gradient(
    145deg,
    #111111,
    #0b0b0b
  );

  border:1px solid #222;
  border-radius:24px;

  padding:28px;

  transition:.35s;
}

.cart-card:hover{
  transform:translateY(-6px);
  border-color:#cbb89d;

  box-shadow:
  0 0 35px rgba(203,184,157,.08);
}

/* ICON */
.cart-icon{
  width:70px;
  height:70px;

  border-radius:50%;

  background:#cbb89d;
  color:black;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:28px;
  font-weight:bold;

  box-shadow:
  0 0 20px rgba(203,184,157,.25);
}

/* DETAILS */
.cart-details h3{
  font-size:32px;
  color:white;
  margin-bottom:10px;
}

.cart-details p{
  color:#bdbdbd;
  margin-bottom:7px;
  line-height:1.5;
}

.cart-price{
  color:#d6c7a6 !important;
  font-size:24px;
  font-weight:bold;
  margin-bottom:15px !important;
}

/* REMOVE BUTTON */
.remove-btn{
  background:#1a1a1a;
  color:#ff8d8d;

  border:1px solid #333;

  padding:14px;
  border-radius:14px;

  font-size:12px;
  letter-spacing:2px;
  font-weight:bold;

  cursor:pointer;
  transition:.3s;
}

.remove-btn:hover{
  background:#ff8d8d;
  color:black;

  box-shadow:
  0 0 20px rgba(255,141,141,.3);
}

/* SUMMARY */
.cart-summary{
  background:linear-gradient(
    145deg,
    #111111,
    #0c0c0c
  );

  border:1px solid #222;

  border-radius:24px;

  padding:35px;

  position:sticky;
  top:120px;

  box-shadow:
  0 0 30px rgba(0,0,0,.4);
}

.cart-summary h2{
  color:#d6c7a6;
  font-size:34px;
  margin-bottom:30px;
}

/* ROWS */
.summary-row,
.summary-total{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:22px;

  color:#bcbcbc;
}

.summary-row strong{
  color:white;
}

.summary-total{
  margin-top:20px;

  font-size:28px;
  font-weight:bold;

  color:#d6c7a6;
}

.cart-summary hr{
  border:none;
  border-top:1px solid #2b2b2b;
  margin:25px 0;
}

/* BUTTONS */
.cart-summary button{
  width:100%;

  padding:16px;

  margin-top:14px;

  border:none;
  border-radius:14px;

  font-weight:bold;
  letter-spacing:2px;

  cursor:pointer;
  transition:.3s;
}

/* CHECKOUT */
.cart-summary button:first-of-type{
  background:#cbb89d;
  color:black;
}

.cart-summary button:first-of-type:hover{
  background:white;

  transform:translateY(-3px);

  box-shadow:
  0 0 25px rgba(203,184,157,.35);
}

/* WHATSAPP */
.whatsapp-btn{
  background:#25D366 !important;
  color:black !important;
}

.whatsapp-btn:hover{
  background:white !important;
  color:black !important;

  transform:translateY(-3px);

  box-shadow:
  0 0 25px rgba(37,211,102,.25);
}

/* EMPTY CART */
.empty-cart{
  text-align:center;

  background:linear-gradient(
    145deg,
    #111111,
    #0b0b0b
  );

  border:1px solid #222;

  border-radius:24px;

  padding:70px 40px;
}

.empty-cart h2{
  color:#d6c7a6;
  font-size:42px;
}

.empty-cart p{
  color:#9e9e9e;
  margin:18px 0 35px;
  line-height:1.7;
}

.empty-cart a{
  display:inline-block;

  background:#cbb89d;
  color:black;

  text-decoration:none;

  padding:15px 28px;

  border-radius:14px;

  letter-spacing:2px;
  font-weight:bold;

  transition:.3s;
}

.empty-cart a:hover{
  background:white;

  transform:translateY(-3px);

  box-shadow:
  0 0 25px rgba(203,184,157,.35);
}

/* RESPONSIVE */
@media(max-width:1000px){

  .cart-layout{
    grid-template-columns:1fr;
  }

  .cart-summary{
    position:static;
  }
}

@media(max-width:700px){

  .cart-hero{
    padding:150px 25px 40px;
  }

  .cart-hero h1{
    font-size:50px;
  }

  .cart-layout{
    padding:20px;
  }

  .cart-card{
    grid-template-columns:1fr;
    text-align:center;
  }

  .cart-icon{
    margin:auto;
  }

  .cart-details h3{
    font-size:26px;
  }

  .summary-total{
    font-size:24px;
  }
}

.payment-layout{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  padding:20px 70px;
}

.payment-card{
  background:#111;
  border:1px solid #222;
  border-radius:24px;
  padding:40px;
  cursor:pointer;
  transition:.3s;
}

.payment-card:hover{
  transform:translateY(-8px);
  border-color:#cbb89d;
}

.payment-card h2{
  color:#d6c7a6;
  font-size:32px;
  margin-bottom:15px;
}

.payment-card p{
  color:#aaa;
}

.payment-summary{
  max-width:600px;
  margin:40px auto 80px;
  background:#111;
  border:1px solid #222;
  border-radius:24px;
  padding:35px;
  text-align:center;
}

.payment-summary h2{
  color:#d6c7a6;
  margin-bottom:25px;
}

.checkout-form{
  max-width:800px;
  margin:0 auto 90px;
  background:#111;
  border:1px solid #222;
  border-radius:24px;
  padding:40px;
}

.checkout-form h2{
  color:#d6c7a6;
  margin:30px 0 15px;
  font-size:30px;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select{
  width:100%;
  padding:15px;
  margin-bottom:15px;
  background:#1a1a1a;
  border:1px solid #333;
  color:white;
  border-radius:12px;
}

.checkout-form textarea{
  min-height:120px;
  resize:none;
}

.qr-box{
  display:none;
  text-align:center;
  background:#0b0b0b;
  border:1px solid #333;
  border-radius:18px;
  padding:25px;
  margin-bottom:20px;
}

.qr-box img{
  width:220px;
  height:220px;
  object-fit:contain;
  background:white;
  padding:10px;
  border-radius:12px;
}

#referenceId,
#receiptUpload{
  display:none;
}


/* =========================
   SUCCESS POPUP
========================= */

.success-popup{
  position:fixed;
  inset:0;

  background:rgba(0,0,0,.82);

  display:flex;
  align-items:center;
  justify-content:center;

  z-index:99999;

  animation:fadeIn .3s ease;
}

.success-box{
  width:90%;
  max-width:520px;

  background:linear-gradient(
    145deg,
    #111111,
    #0a0a0a
  );

  border:1px solid #2d2d2d;
  border-radius:28px;

  padding:55px 40px;

  text-align:center;

  box-shadow:
  0 0 45px rgba(0,0,0,.5);
}

.success-icon{
  width:90px;
  height:90px;

  margin:auto auto 30px;

  border-radius:50%;

  background:#cbb89d;
  color:black;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:45px;
  font-weight:bold;
}

.success-box h2{
  color:#d6c7a6;
  font-size:42px;
  margin-bottom:18px;
}

.success-box p{
  color:#bdbdbd;
  line-height:1.8;
  margin-bottom:35px;
}

.success-box button{
  width:100%;

  padding:16px;

  border:none;
  border-radius:14px;

  background:#cbb89d;
  color:black;

  font-weight:bold;
  letter-spacing:2px;

  cursor:pointer;
  transition:.3s;
}

.success-box button:hover{
  background:white;

  transform:translateY(-3px);

  box-shadow:
  0 0 25px rgba(203,184,157,.35);
}

/* =========================
   PREMIUM HOME PAGE
========================= */

*{
  font-family:'Cormorant Garamond', serif;
}

.hero{
  position:relative;
  min-height:115vh;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  padding:160px 90px 180px;
  overflow:hidden;
  background:
  linear-gradient(
    rgba(0,0,0,.72),
    rgba(0,0,0,.85)
  ),
  /* url("https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1800&auto=format&fit=crop") */
  url("main_wallpaper.png")
  center/cover no-repeat;
}

.overlay{
  position:absolute;
  inset:0;
  background:
  radial-gradient(
    circle at center,
    rgba(203,184,157,.08),
    transparent 55%
  );
}

.hero-glow{
  position:absolute;

  width:700px;
  height:700px;

  right:-250px;
  top:-120px;

  background:
  radial-gradient(
    circle,
    rgba(203,184,157,.12),
    transparent 70%
  );

  filter:blur(20px);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:700px;
}

.hero h1{
  font-size:110px;
  line-height:.9;
  font-weight:500;
  margin-top:20px;
}

.hero h1 span{
  color:#d6c7a6;
  font-style:italic;
}

.desc{
  margin-top:30px;

  max-width:520px;

  color:#b5b5b5;

  line-height:1.9;

  font-size:17px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:40px;
}

.btn{
  padding:16px 30px;

  background:#d6c7a6;
  color:black;

  text-decoration:none;

  border-radius:14px;

  letter-spacing:2px;
  font-size:13px;
  font-weight:bold;

  transition:.3s;
}

.btn:hover{
  background:white;

  transform:translateY(-3px);

  box-shadow:
  0 0 30px rgba(203,184,157,.3);
}

.btn-outline{
  padding:16px 30px;

  border:1px solid #d6c7a6;

  color:#d6c7a6;

  text-decoration:none;

  border-radius:14px;

  letter-spacing:2px;
  font-size:13px;

  transition:.3s;
}

.btn-outline:hover{
  background:#d6c7a6;
  color:black;
}

.hero-side{
  position:relative;
  z-index:2;

  display:flex;
  justify-content:center;
}

.hero-card{
  width:100%;
  max-width:420px;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02)
  );

  backdrop-filter:blur(16px);

  border:1px solid rgba(255,255,255,.08);

  border-radius:28px;

  padding:40px;

  box-shadow:
  0 0 40px rgba(0,0,0,.45);
}

.card-small{
  color:#d6c7a6;
  letter-spacing:3px;
  font-size:12px;
}

.hero-card h2{
  font-size:56px;
  margin:18px 0;
}

.hero-card p{
  color:#bdbdbd;
  line-height:1.8;
}

.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.hero-tags span{
  border:1px solid rgba(255,255,255,.1);

  padding:10px 16px;

  border-radius:999px;

  color:#d6c7a6;

  font-size:11px;
  letter-spacing:2px;
}

/* FEATURED */

.featured-section{
  padding:100px 70px;
  background:#080808;
}

.section-title{
  margin-bottom:50px;
}

.section-title h2{
  font-size:70px;
  color:#d6c7a6;
}

.featured-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.featured-card{
  position:relative;

  height:520px;

  overflow:hidden;

  border-radius:28px;

  border:1px solid #1f1f1f;

  text-decoration:none;

  transition:.4s;
}

.featured-card:hover{
  transform:translateY(-10px);

  border-color:#d6c7a6;

  box-shadow:
  0 0 35px rgba(203,184,157,.15);
}

.featured-card img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:.6s;
}

.featured-card:hover img{
  transform:scale(1.08);
}

.featured-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.15)
  );

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  padding:35px;
}

.featured-overlay p{
  color:#d6c7a6;
  letter-spacing:3px;
  font-size:12px;
}

.featured-overlay h3{
  color:white;
  font-size:46px;
  margin-top:12px;
}

/* MOBILE */

@media(max-width:1000px){

  .hero{
    grid-template-columns:1fr;
    gap:50px;

  padding:160px 90px 120px;
  }

  .hero h1{
  font-size:95px;
  }

  .section-title h2{
    font-size:50px;
  }

  .featured-section{
    padding:80px 25px;
  }
}

@media(max-width:700px){

  .hero h1{
    font-size:52px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-card h2{
    font-size:42px;
  }

  .featured-overlay h3{
    font-size:34px;
  }
}

/* =========================
   ATELIER PAGE
========================= */

.atelier-page{
  background:#070707;
  color:white;
}

.atelier-hero{
  min-height:90vh;
  padding:170px 80px 100px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.82)),
    url("anime.jpeg")
    center/cover no-repeat;
}

.atelier-content{
  max-width:850px;
}

.atelier-content h1{
  font-size:105px;
  line-height:.9;
  font-weight:500;
}

.atelier-content h1 span{
  color:#d6c7a6;
  font-style:italic;
}

.atelier-content p{
  max-width:620px;
  color:#bdbdbd;
  line-height:1.8;
  font-size:18px;
  margin-top:28px;
}

.atelier-story{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  padding:100px 80px;
}

.atelier-story h2,
.process-section h2,
.materials-section h2,
.atelier-cta h2{
  font-size:70px;
  color:#d6c7a6;
  line-height:1;
  margin:20px 0;
}

.atelier-story p{
  color:#bdbdbd;
  line-height:1.9;
  font-size:18px;
}

.atelier-story img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:28px;
  border:1px solid #222;
}

.process-section,
.materials-section{
  padding:90px 80px;
}

.process-grid,
.material-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:45px;
}

.process-card,
.material-card{
  background:linear-gradient(145deg,#111,#0b0b0b);
  border:1px solid #222;
  border-radius:24px;
  padding:35px;
  transition:.3s;
}

.process-card:hover,
.material-card:hover{
  transform:translateY(-8px);
  border-color:#d6c7a6;
}

.process-card span{
  color:#d6c7a6;
  letter-spacing:3px;
  font-size:13px;
}

.process-card h3,
.material-card h3{
  font-size:34px;
  color:white;
  margin:18px 0;
}

.process-card p,
.material-card p{
  color:#aaa;
  line-height:1.7;
}

.atelier-cta{
  margin:80px;
  padding:70px;
  text-align:center;
  border-radius:32px;
  border:1px solid #222;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.85)),
    url("https://images.unsplash.com/photo-1581090700227-1e37b190418e?q=80&w=1600&auto=format&fit=crop")
    center/cover no-repeat;
}

.atelier-cta p{
  max-width:650px;
  margin:20px auto 35px;
  color:#bdbdbd;
  line-height:1.8;
}

.atelier-cta a{
  display:inline-block;
  padding:16px 32px;
  background:#d6c7a6;
  color:black;
  text-decoration:none;
  border-radius:14px;
  letter-spacing:2px;
  font-weight:bold;
}

@media(max-width:900px){
  .atelier-hero{
    padding:150px 30px 80px;
  }

  .atelier-content h1{
    font-size:58px;
  }

  .atelier-story{
    grid-template-columns:1fr;
    padding:70px 30px;
  }

  .process-section,
  .materials-section{
    padding:70px 30px;
  }

  .atelier-story h2,
  .process-section h2,
  .materials-section h2,
  .atelier-cta h2{
    font-size:45px;
  }

  .atelier-cta{
    margin:30px;
    padding:45px 25px;
  }
}

/* =========================
   WHY SECTION
========================= */

.why-section{
  padding:110px 80px;
  background:#070707;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:50px;
}

.why-card{
  background:
  linear-gradient(
    145deg,
    #111,
    #0a0a0a
  );

  border:1px solid #1f1f1f;

  border-radius:28px;

  padding:40px;

  transition:.35s;
}

.why-card:hover{
  transform:translateY(-10px);

  border-color:#d6c7a6;

  box-shadow:
  0 0 35px rgba(203,184,157,.12);
}

.why-card h3{
  font-size:40px;
  margin-bottom:20px;
  color:#d6c7a6;
}

.why-card p{
  color:#aaa;
  line-height:1.8;
}

/* =========================
   PARALLAX
========================= */

/* .parallax-section{   PIC
  position:relative;

  min-height:80vh;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  background:
  url("custom3.MP4")
  center/cover fixed no-repeat;

  overflow:hidden;
} */


.parallax-section{
  position:relative;
  height:100vh;
  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.parallax-video{
  position:absolute;
  top:90%;
  left:50%;

  min-width:100%;
  min-height:100%;

  width:auto;
  height:auto;

  transform:translate(-50%, -50%);

  z-index:-2;
}


/* .parallax-overlay{  PIC
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.82)
  );
} */

.parallax-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:-1;
}

.parallax-content{
  position:relative;
  z-index:2;

  max-width:800px;

  padding:40px;
}

.parallax-content h2{
  font-size:90px;
  line-height:.95;

  margin:20px 0;

  color:#d6c7a6;
}

.parallax-content p{
  color:#bdbdbd;
  line-height:1.9;
  margin-bottom:35px;
}

.parallax-content a{
  display:inline-block;

  padding:16px 34px;

  background:#d6c7a6;
  color:black;

  text-decoration:none;

  border-radius:14px;

  letter-spacing:2px;
  font-weight:bold;
}

/* =========================
   SOCIAL
========================= */

.social-section{
  padding:110px 80px;
  text-align:center;
  background:#080808;
}

.social-section h2{
  font-size:70px;
  color:#d6c7a6;
  margin:20px 0 50px;
}

.social-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}

.social-grid a{
  padding:18px 30px;

  border:1px solid #2b2b2b;

  border-radius:999px;

  color:#d6c7a6;

  text-decoration:none;

  letter-spacing:2px;
  font-size:13px;

  transition:.3s;
}

.social-grid a:hover{
  background:#d6c7a6;
  color:black;

  transform:translateY(-4px);
}

/* =========================
   FOOTER
========================= */

.footer{
  padding:70px 30px 40px;

  border-top:1px solid #1f1f1f;

  background:black;

  text-align:center;
}

.footer-logo h2{
  font-size:42px;
  color:#d6c7a6;
}

.footer-logo p{
  color:#777;
  letter-spacing:4px;
  margin-top:10px;
}

.footer-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:25px;

  margin:40px 0;
}

.footer-links a{
  color:#bdbdbd;
  text-decoration:none;
  letter-spacing:2px;
  font-size:13px;
}

.footer-copy{
  color:#666;
  font-size:13px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .why-section,
  .social-section{
    padding:80px 25px;
  }

  .social-section h2,
  .parallax-content h2{
    font-size:48px;
  }

  .parallax-content{
    padding:30px;
  }
}

.collection-title span{
  color:#d6c7a6;
  font-style:italic;
}

.collection-hero{
  position:relative;

  min-height:85vh;

  display:flex;
  align-items:center;

  padding:160px 90px 120px;

  overflow:hidden;

  background:
  linear-gradient(
    rgba(0,0,0,.72),
    rgba(0,0,0,.88)
  ),
  url("r.png")
  center/cover no-repeat;
}

.collection-overlay{
  position:absolute;
  inset:0;

  background:
  radial-gradient(
    circle at center,
    rgba(203,184,157,.08),
    transparent 55%
  );
}

.collection-content{
  position:relative;
  z-index:2;
  max-width:720px;
}

.collection-title{
  font-size:105px;
  line-height:.9;
  margin-top:20px;
  font-weight:500;
}

.collection-desc{
  margin-top:30px;

  color:#b5b5b5;

  max-width:520px;

  line-height:1.9;

  font-size:17px;
}


/* COMMISSION BANNER */

.commission-banner{
    padding:100px 8%;
    background:
    linear-gradient(rgba(11,15,20,.85),rgba(11,15,20,.92)),
    url("pic4.png");
    background-size:cover;
    background-position:center;
    text-align:center;
}

.commission-banner-content{
    max-width:700px;
    margin:auto;
}

.commission-content h1{
    font-size:78px;
    line-height:0.9;
    letter-spacing:-2px;
    max-width:550px;
}

.commission-banner h2{
    font-size:60px;
    margin:20px 0;
}

.commission-banner p{
    color:#aaa;
    line-height:1.8;
    margin-bottom:35px;
}

.commission-hero{
  min-height:100vh;
  position:relative;
  background:
    linear-gradient(rgba(11,15,20,.75),rgba(11,15,20,.95)),
    url("pic4.png");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  padding:120px 8%;
}

.commission-hero::after{
    content:"";
    position:absolute;
    right:10%;
    top:50%;
    width:400px;
    height:400px;
    background:rgba(194,166,107,0.08);
    filter:blur(100px);
    border-radius:50%;
}

.commission-content{
  max-width:650px;
  position:relative;
  z-index:2;
     font-size:95px;
    line-height:0.95;
}

.commission-section{
  padding:90px 8%;
  background:#0b0f14;
}

.commission-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:25px;
  margin-top:45px;
}

.commission-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(194,166,107,0.25);
  padding:35px;
  border-radius:18px;
  transition:.3s;
}

.commission-card:hover{
  transform:translateY(-8px);
  border-color:#c2a66b;
}

.commission-card h3{
  color:#c2a66b;
  margin-bottom:15px;
  font-size:24px;
}

.commission-card p{
  color:#aaa;
  line-height:1.7;
}
