:root{
  --bg:#050505;
  --bg-soft:#0b0b0c;
  --panel:#101011;
  --panel-2:#141416;
  --line:rgba(255,255,255,.08);
  --line-strong:rgba(255,255,255,.12);
  --text:#f5f3ef;
  --muted:rgba(255,255,255,.68);
  --muted-2:rgba(255,255,255,.52);
  --gold:#d0b28a;
  --gold-2:#b88f60;
  --gold-3:#8f6b43;
  --shadow:0 30px 80px rgba(0,0,0,.42);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  min-height:100vh;
}

.page-bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(208,178,138,.12), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(184,143,96,.10), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,.04), transparent 30%),
    linear-gradient(180deg, #090909 0%, #050505 45%, #030303 100%);
}

.header{
  position:sticky;
  top:0;
  z-index:60;
  padding:18px 20px 0;
}

.header-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(10,10,10,.72);
  backdrop-filter:blur(12px);
  box-shadow:0 10px 40px rgba(0,0,0,.25);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, rgba(208,178,138,.22), rgba(143,107,67,.18));
  border:1px solid rgba(208,178,138,.22);
  color:var(--gold);
  font-size:18px;
  flex:0 0 auto;
}

.brand-copy{
  min-width:0;
}

.brand-name{
  font-size:18px;
  font-weight:900;
  letter-spacing:.14em;
}

.brand-subtitle{
  margin-top:2px;
  color:var(--muted-2);
  font-size:12px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.cart-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-height:54px;
  padding:0 18px;
  border-radius:16px;
  border:1px solid rgba(208,178,138,.24);
  background:linear-gradient(180deg, rgba(208,178,138,.16), rgba(143,107,67,.12));
  color:var(--text);
  cursor:pointer;
  user-select:none;
  font-weight:800;
  transition:transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  flex:0 0 auto;
}

.cart-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(208,178,138,.42);
  background:linear-gradient(180deg, rgba(208,178,138,.20), rgba(143,107,67,.16));
  box-shadow:0 0 0 1px rgba(208,178,138,.12), 0 0 24px rgba(208,178,138,.08);
}

.cart-btn.pulse{
  animation:pulseCart .42s ease;
}

@keyframes pulseCart{
  0%{ transform:scale(1); }
  50%{ transform:scale(1.08); }
  100%{ transform:scale(1); }
}

.cart-btn-icon{
  font-size:18px;
  line-height:1;
}

.cart-btn-text{
  font-size:14px;
}

.cart-count{
  min-width:28px;
  height:28px;
  padding:0 8px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#fff;
  color:#111;
  font-size:13px;
  font-weight:900;
}

.page-shell{
  position:relative;
  z-index:1;
  max-width:1400px;
  margin:0 auto;
  padding:28px 20px 60px;
}

.hero{
  position:relative;
  padding:72px 0 38px;
  text-align:center;
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-34px;
  height:90px;
  background:linear-gradient(180deg, rgba(5,5,5,0) 0%, rgba(5,5,5,.96) 100%);
  pointer-events:none;
}

.hero--error{
  max-width:900px;
  margin:0 auto;
  padding:120px 20px;
}

.hero-logo-wrap{
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  overflow:hidden;
}

.hero-logo-img{
  display:block;
  width:140px !important;
  max-width:140px !important;
  height:auto !important;
  object-fit:contain;
}

.hero h1{
  max-width:980px;
  margin:0 auto;
  font-size:clamp(40px, 6vw, 76px);
  line-height:.98;
  letter-spacing:-.04em;
  font-weight:900;
}

.hero p{
  max-width:760px;
  margin:20px auto 0;
  font-size:18px;
  line-height:1.7;
  color:var(--muted);
}

.error-detail{
  opacity:.75;
}

.services-wrap{
  padding-top:10px;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:24px;
}

.section-kicker{
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  margin-bottom:10px;
}

.section-head h2{
  margin:0;
  font-size:36px;
  line-height:1.05;
  letter-spacing:-.03em;
}

.section-note{
  color:var(--muted-2);
  font-size:14px;
}

.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px;
}

.card{
  cursor:pointer;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease;
  box-shadow:0 8px 24px rgba(0,0,0,.18);
  opacity:0;
  transform:translateY(20px);
  animation:cardIn .6s ease forwards;
}

.card:nth-child(1){ animation-delay:.02s; }
.card:nth-child(2){ animation-delay:.05s; }
.card:nth-child(3){ animation-delay:.08s; }
.card:nth-child(4){ animation-delay:.11s; }
.card:nth-child(5){ animation-delay:.14s; }
.card:nth-child(6){ animation-delay:.17s; }
.card:nth-child(7){ animation-delay:.20s; }
.card:nth-child(8){ animation-delay:.23s; }
.card:nth-child(9){ animation-delay:.26s; }
.card:nth-child(10){ animation-delay:.29s; }
.card:nth-child(11){ animation-delay:.32s; }
.card:nth-child(12){ animation-delay:.35s; }

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

.card:hover{
  transform:translateY(-6px);
  border-color:rgba(208,178,138,.24);
  box-shadow:
    0 22px 50px rgba(0,0,0,.28),
    0 0 0 1px rgba(208,178,138,.15),
    0 0 25px rgba(208,178,138,.12);
}

.img{
  position:relative;
  height:340px;
  background:#151515;
  overflow:hidden;
  border-radius:22px 22px 0 0;
}

.img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(0,0,0,.18) 100%);
  pointer-events:none;
}

.card-badge-new{
  position:absolute;
  top:14px;
  right:-38px;
  z-index:4;
  min-width:140px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#ffd86d,#e8ab2f);
  color:#111;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  transform:rotate(45deg);
  box-shadow:0 10px 24px rgba(0,0,0,.28);
  pointer-events:none;
}

.img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}

.card:hover .img img{
  transform:scale(1.04);
}

.img-placeholder{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, #1a1a1a, #111);
  color:rgba(255,255,255,.32);
  font-weight:900;
  letter-spacing:.16em;
}

.info{
  padding:18px 18px 20px;
}

.info-top{
  display:flex;
  align-items:start;
  justify-content:space-between;
  gap:14px;
}

.info h3{
  margin:0;
  font-size:28px;
  line-height:1.02;
  letter-spacing:-.03em;
}

.card-arrow{
  width:36px;
  height:36px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.05);
  color:var(--gold);
  border:1px solid rgba(255,255,255,.08);
  flex:0 0 auto;
}

.price{
  margin-top:16px;
  color:var(--muted);
  font-size:17px;
  font-weight:700;
}

.social-section{
  padding-top:48px;
}

.social-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}

.social-copy{
  max-width:520px;
}

.social-copy h2{
  margin:0 0 12px;
  font-size:36px;
  line-height:1.02;
  letter-spacing:-.03em;
}

.social-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:16px;
}

.social-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:14px;
}

.social-link{
  min-width:170px;
  min-height:62px;
  padding:0 18px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(12px);
  transition:transform .22s ease, border-color .22s ease, background .22s ease;
}

.social-link:hover{
  transform:translateY(-3px);
  border-color:rgba(208,178,138,.28);
  background:rgba(255,255,255,.06);
}

.social-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, rgba(208,178,138,.18), rgba(143,107,67,.12));
  border:1px solid rgba(208,178,138,.16);
  color:var(--gold);
  flex:0 0 auto;
}

.social-icon svg{
  width:20px;
  height:20px;
  fill:currentColor;
  display:block;
}

.social-text{
  font-size:15px;
  font-weight:800;
}

body.modal-open{
  overflow:hidden;
}

#modal{
  position:fixed;
  inset:0;
  z-index:9999;
  pointer-events:none;
}

#modal:not(:empty){
  pointer-events:auto;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(0px);
  opacity:0;
  transition:opacity .28s ease, backdrop-filter .28s ease;
}

.service-modal{
  display:flex;
  gap:28px;
  background:#070707;
  color:#fff;
  padding:28px;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, calc(-50% + 18px)) scale(.98);
  width:min(1180px,calc(100vw - 40px));
  max-height:calc(100vh - 40px);
  overflow:auto;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 30px 80px rgba(0,0,0,.7);
  box-sizing:border-box;
  opacity:0;
  transition:opacity .32s ease, transform .32s ease;
}

#modal.is-open .modal-backdrop{
  opacity:1;
  backdrop-filter:blur(4px);
}

#modal.is-open .service-modal{
  opacity:1;
  transform:translate(-50%, -50%) scale(1);
}

.modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:#111;
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

.left{
  flex:1.08;
  min-width:0;
}

.right{
  flex:.92;
  min-width:0;
  padding:4px 4px 4px 0;
}

.main-img{
  width:100%;
  height:600px;
  object-fit:cover;
  border-radius:20px;
  background:#161616;
}

.main-img.placeholder{
  background:#161616;
}

.thumbs{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:16px;
}

.thumb{
  width:78px;
  height:78px;
  object-fit:cover;
  border-radius:999px;
  border:2px solid transparent;
  cursor:pointer;
  opacity:.84;
  transition:.2s;
}

.thumb.active,
.thumb:hover{
  border-color:var(--gold-2);
  opacity:1;
}

.right h2{
  margin:0 0 16px;
  font-size:44px;
  line-height:.98;
  letter-spacing:-.04em;
}

.service-desc{
  font-size:16px;
  line-height:1.75;
  color:rgba(255,255,255,.90);
  margin-bottom:24px;
  white-space:normal;
}

.right h4{
  margin:0 0 10px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--gold);
}

.variant-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:22px;
}

.variant-option{
  display:grid;
  grid-template-columns:24px 1fr auto;
  gap:12px;
  align-items:center;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:#0d0d0d;
  cursor:pointer;
}

.variant-option input{
  width:auto;
  margin:0;
}

.variant-name{
  font-size:16px;
  font-weight:800;
}

.variant-code{
  font-size:12px;
  color:rgba(255,255,255,.65);
  margin-top:4px;
}

.variant-price{
  font-size:16px;
  font-weight:900;
}

.qty-wrap{
  margin-bottom:24px;
}

.qty{
  display:inline-flex;
  align-items:center;
  gap:16px;
  padding:8px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:#0e0e0e;
}

.qty button{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:#151515;
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

#qty{
  min-width:22px;
  text-align:center;
  font-weight:900;
}

.modal-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.modal-price{
  font-size:34px;
  font-weight:900;
  letter-spacing:-.03em;
}

.addCart{
  min-width:240px;
  min-height:54px;
  padding:0 26px;
  border-radius:16px;
  border:0;
  cursor:pointer;
  font-weight:900;
  background:linear-gradient(180deg, #d4b48e, #b98f61);
  color:#111;
}

body.cart-open{
  overflow:hidden;
}

#cart{
  position:fixed;
  inset:0;
  z-index:10000;
  pointer-events:none;
}

#cart.open{
  pointer-events:auto;
}

.cart-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.64);
  opacity:0;
  transition:opacity .25s ease;
}

#cart.open .cart-backdrop{
  opacity:1;
}

.cart-drawer{
  position:absolute;
  top:0;
  right:0;
  width:min(440px,100vw);
  height:100%;
  background:#070707;
  border-left:1px solid rgba(255,255,255,.10);
  display:flex;
  flex-direction:column;
  transform:translateX(100%);
  transition:transform .25s ease;
  box-shadow:-20px 0 60px rgba(0,0,0,.45);
  box-sizing:border-box;
}

#cart.open .cart-drawer{
  transform:translateX(0);
}

.cart-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 20px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.cart-header h3{
  margin:0;
  font-size:22px;
  letter-spacing:-.02em;
}

.cart-close{
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:#111;
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

.cart-body{
  flex:1;
  overflow:auto;
  padding:18px;
  box-sizing:border-box;
}

.cart-empty{
  padding:18px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:#0d0d0d;
  color:rgba(255,255,255,.75);
}

.cart-item{
  padding:14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:#0d0d0d;
}

.cart-item + .cart-item{
  margin-top:12px;
}

.cart-item-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}

.cart-item-title{
  font-weight:800;
  font-size:15px;
  line-height:1.35;
}

.cart-item-variant{
  margin-top:4px;
  font-size:13px;
  color:rgba(255,255,255,.68);
}

.cart-remove{
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:#151515;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  flex:0 0 auto;
}

.cart-item-bottom{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.cart-item-extras{
  margin-top:6px;
  font-size:12px;
  line-height:1.5;
  color:rgba(255,255,255,.68);
}

.cart-qty{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:#111;
}

.cart-qty button{
  width:30px;
  height:30px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  background:#181818;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.cart-qty span{
  min-width:16px;
  text-align:center;
  font-weight:700;
}

.cart-line-price{
  font-weight:900;
  font-size:16px;
}

.cart-form{
  margin-top:18px;
  padding:16px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:#0d0d0d;
}

.cart-label{
  display:block;
  margin:0 0 8px;
  font-size:13px;
  font-weight:800;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.06em;
}

.cart-input{
  width:100%;
  min-height:48px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:#111;
  color:#fff;
  box-sizing:border-box;
  margin-bottom:14px;
}

.cart-input:last-child{
  margin-bottom:0;
}

.cart-footer{
  padding:18px;
  border-top:1px solid rgba(255,255,255,.08);
  background:#090909;
  box-sizing:border-box;
}

.cart-total-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
  font-size:20px;
}

.cart-checkout{
  width:100%;
  min-height:54px;
  border:0;
  border-radius:16px;
  cursor:pointer;
  font-weight:900;
  background:linear-gradient(180deg, #d4b48e, #b98f61);
  color:#111;
}

.cart-checkout.disabled,
.cart-checkout:disabled{
  opacity:.45;
  cursor:not-allowed;
}

@media (max-width: 1100px){
  .hero{
    padding-top:54px;
  }

  .section-head{
    flex-direction:column;
    align-items:start;
  }

  .social-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .social-links{
    justify-content:flex-start;
  }

  .service-modal{
    flex-direction:column;
    width:min(96vw,1100px);
    gap:18px;
    padding:18px;
  }

  .main-img{
    height:380px;
  }

  .right h2{
    font-size:30px;
  }

  .modal-price{
    font-size:26px;
  }
}

@media (max-width: 700px){
  .header{
    padding:14px 14px 0;
  }

  .header-inner{
    padding:14px;
    border-radius:18px;
  }

  .brand-subtitle{
    display:none;
  }

  .cart-btn{
    min-height:48px;
    padding:0 14px;
    gap:10px;
  }

  .cart-btn-text{
    display:none;
  }

  .page-shell{
    padding:24px 14px 40px;
  }

  .hero{
    padding:42px 0 26px;
  }

  .hero-logo-wrap{
    margin-bottom:14px;
  }

  .hero-logo-img{
    width:96px !important;
    max-width:96px !important;
    height:auto !important;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:16px;
  }

  .services{
    grid-template-columns:1fr;
    gap:18px;
  }

  .img{
    height:280px;
  }

  .info h3{
    font-size:24px;
  }

  .social-card{
    padding:20px;
    border-radius:22px;
  }

  .social-copy h2{
    font-size:28px;
  }

  .social-link{
    width:100%;
    min-width:0;
  }

  .cart-drawer{
    width:100vw;
  }
}