@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200..900&family=Playfair+Display:wght@300..900&display=swap');

:root{
  --gold:#b28971;
  --gold-soft:#b28971;
  --black:#0c0c0c;
  --graphite:#161616;
  --text:#f0edea;
  --muted: rgba(240, 237, 234, 0.70);
  --muted2: rgba(240, 237, 234, 0.55);
  --border: rgba(178, 137, 113, 0.18);
  --border2: rgba(255,255,255,0.08);
  --shadow: 0 40px 120px rgba(0,0,0,.75);
}

*{box-sizing:border-box}
html,body{height:100%}
html.no-scroll, body.no-scroll{overflow:hidden}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: #000;
}

/* ===== BACKGROUND ===== */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background-image:url(/images/bg.jpg);
  background-size:cover;
  background-position:center;
  filter: blur(5px);
  transform: scale(1.06);
  z-index:-2;
}
@media (max-width: 768px){
  body::before{ background-position: 24% 50%; }
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.46);
  z-index:-1;
}

/* ===== TYPO ===== */
.h-serif{
  font-family: "Playfair Display", serif;
  font-weight: 300;
  letter-spacing: .10em;
}
.t-small{
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
@media (max-width: 768px){
  .t-small{ font-size: 15px; }
}

/* ===== HERO ===== */
header.hero{
  min-height: 22vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 8vh 16px 7vh;
  position: relative;
}
header.hero:after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:1px;
  background: var(--border);
}

.hero-inner{
  width: min(980px, 100%);
  text-align:center;
  animation: heroFade 1.1s ease both;
}

.brand{
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 54px);
  color: var(--gold-soft);
  text-shadow: -4px -3px 10px rgba(0,0,0,.85);
  text-transform: uppercase;
}

.hero-sub{
  margin: 0 0 26px;
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: .22em;
  color: rgba(240, 237, 234, 0.85);
  text-shadow: -4px -3px 10px rgba(0,0,0,.85);
}

/* HERO CTA */
.hero-cta{
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 22px;
  min-width: 220px;
  border-radius: 999px;
  border: 1px solid rgba(178,137,113,.55);
  background: rgba(0,0,0,.20);
  color: var(--text);
  text-decoration:none;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, opacity .25s ease;
  cursor:pointer;
  backdrop-filter: blur(6px);
}
.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(178,137,113,.9);
  background: rgba(178,137,113,.10);
}
.btn.primary{
  background: rgba(178,137,113,.16);
}
.btn.primary:hover{
  background: rgba(178,137,113,.22);
}

@media (max-width: 768px){
  .btn{ min-width: 100%; }
}

/* ===== SECTION WRAPPER (smooth lines like ref) ===== */
.section-wrap{
  position: relative;
  margin: 0 auto;
  width: min(1300px, 100%);
  padding: 54px 18px 0;
}

.section-wrap:before,
.section-wrap:after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:1px;
  background: linear-gradient(to right,
    transparent,
    rgba(178,137,113,.35),
    transparent
  );
  opacity: .9;
}
.section-wrap:before{ top: 0; }
.section-wrap:after{ bottom: 0; }

/* ===== EXPLORE ===== */
.explore{
  padding: 60px 0 54px;
  text-align:center;
  position: relative;
}

.explore .title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 42px);
  color: rgba(240, 237, 234, 0.92);
  text-shadow: -3px -2px 10px rgba(0,0,0,.75);
}
.explore .subtitle{
  margin: 0 0 18px;
  letter-spacing: .18em;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(240, 237, 234, 0.62);
}

/* Trust block */
.trust{
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  gap: 16px;
  width: min(980px, 100%);
  margin: 18px auto 0;
}

.trust .item{
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.20);
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(240,237,234,.78);
  font-size: 13px;
  letter-spacing: .06em;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.trust .dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(178,137,113,.9);
  box-shadow: 0 0 0 4px rgba(178,137,113,.12);
}

@media (max-width: 768px){
  .trust{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .trust .item{
    justify-content: center;
  }
  .trust .item:last-child{
    grid-column: 1 / -1;
    width: min(360px, 100%);
    margin: 0 auto;
  }
}


/* ===== GALLERY ===== */
.gallery{
  max-width: 1200px;
  margin: 44px auto 0;
  padding: 0 24px 70px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 52px;
}

/* card */
.card{
  border: 1px solid rgba(178,137,113,.16);
  background: rgba(0,0,0,0.55);
  padding: 34px 28px 30px;
  text-align:center;
  position: relative;
  overflow:hidden;
  transition: transform .75s cubic-bezier(.2,.8,.2,1),
              box-shadow .75s cubic-bezier(.2,.8,.2,1),
              border-color .65s ease;
  will-change: transform;
}

.card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 20%,
    rgba(255,255,255,.06),
    transparent 55%
  );
  transform: rotate(12deg);
  opacity: .65;
  pointer-events:none;
}

.card:hover{
  /*transform: translateY(-1px);*/
  border-color: rgba(178,137,113,.42);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}

.card::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 0;
  pointer-events:none;
  opacity:0;
  transition: opacity .55s ease;
  background: radial-gradient(
    600px 220px at 50% 0%,
    rgba(178,137,113,.12),
    transparent 60%
  );
}

.card:hover::after{
  opacity:1;
}


.card.sold{
  opacity: .72;
  filter: grayscale(.35);
  pointer-events: none;
}

.card-img{
  height: 320px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 16px 0 20px;
}

.card-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;

  transition: transform 2s cubic-bezier(.2,.8,.2,1),
              box-shadow 1.55s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.card:hover .card-img img{
  transform: scale(1.03);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
}

.card-title{
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  letter-spacing: .08em;
  color: rgba(178,137,113,.95);
  font-size: 20px;
}
.card-meta{
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(240,237,234,.70);
}
.card-meta strong{
  color: rgba(240,237,234,.88);
  font-weight: 500;
}
.card-price{
  margin-top: 10px;
  color: rgba(240,237,234,.90);
  letter-spacing: .10em;
  font-size: 14px;
}

.view-details{
  margin: 18px auto 0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border: 1px solid rgba(178,137,113,.55);
  background: transparent;
  color: rgba(178,137,113,.95);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  cursor:pointer;
  transition: background .25s ease, transform .25s ease, opacity .25s ease;
}
.view-details:hover{
  background: rgba(178,137,113,.14);
  transform: translateY(-2px);
}

.card.sold { cursor: default; }

.card.sold .view-details{
  opacity: .35;
  pointer-events: none;
}

/* ===== COLLECT CTA ===== */
.final-cta{
  max-width: 1100px;
  margin: 0 auto;
  padding: 78px 22px 86px;
  text-align:center;
  position: relative;
}
.final-cta:before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:1px;
  background: linear-gradient(to right, transparent, rgba(178,137,113,.35), transparent);
}
.final-cta h2{
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  letter-spacing: .12em;
  font-size: clamp(22px, 3vw, 40px);
  color: rgba(240,237,234,.92);
}
.final-cta p{
  margin: 0 0 30px;
  color: rgba(240,237,234,.72);
  line-height: 1.65;
}
.final-cta .cta-buttons{
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq{
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 22px 60px;
  position: relative;
}
.faq:before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:1px;
  background: linear-gradient(to right, transparent, rgba(178,137,113,.35), transparent);
}
.faq h2{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  letter-spacing: .12em;
  font-size: clamp(22px, 3vw, 36px);
}
.faq .desc{
  margin: 0 0 26px;
  color: rgba(240,237,234,.70);
  line-height: 1.65;
}
.faq-controls{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 16px;
}
.faq-controls .btn{
  min-width: auto;
  padding: 10px 14px;
  font-size: 11px;
}
@media (max-width: 520px){
  .faq-controls .btn{
    width: 100%;
  }
}
.faq-list{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item{
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.22);
  border-radius: 14px;
  overflow:hidden;
}
.faq-q{
  width:100%;
  text-align:left;
  padding: 16px 18px;
  background: transparent;
  border:0;
  color: rgba(240,237,234,.92);
  font-size: 15px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.faq-q span{
  color: rgba(240,237,234,.92);
}
.faq-q .plus{
  color: rgba(178,137,113,.95);
  font-size: 18px;
  transition: transform .25s ease;
}
.faq-item.active .faq-q .plus{
  transform: rotate(45deg);
}
.faq-a{
  max-height: 0;
  overflow:hidden;
  transition: max-height .35s ease;
}
.faq-item.active .faq-a{
  max-height: 600px;
}
.faq-a .inner{
  padding: 0 18px 16px;
  color: rgba(240,237,234,.72);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer{
  margin-top: 40px;
  padding: 56px 20px 70px;
  border-top: 1px solid rgba(178,137,113,.18);
  background: transparent;
}
.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  text-align:center;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 16px;
}
.footer-brand{
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 10px;
  color: var(--gold-soft);
  text-transform: uppercase;
  text-shadow: -4px -3px 10px rgba(0,0,0,.85);
}
.footer-subtitle{
  margin: 0;
  color: rgba(240,237,234,.78);
  letter-spacing: .14em;
  font-size: 13px;
  text-transform: uppercase;
}
.footer-location{
  margin: 0;
  color: rgba(240,237,234,.62);
  font-size: 13px;
  letter-spacing: .08em;
}
.footer-copy{
  margin: 0;
  color: rgba(240,237,234,.55);
  font-size: 13px;
  letter-spacing: .08em;
}

.footer-icons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 14px;
  margin-top: 6px;
}
.footer-icons a{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(178,137,113,.35);
  background: rgba(0,0,0,.30);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.footer-icons a:hover{
  transform: translateY(-2px);
  background: rgba(178,137,113,.10);
  border-color: rgba(178,137,113,.65);
}
.footer-icons a svg{
  width: 16px;
  height: 16px;
  display:block;
  fill: rgba(240,237,234,.85);
}
.footer-icons a.tg svg{
  transform: translateX(-1px);
}
.footer-icons a.wa svg{
  transform: translateX(0px) translateY(0.2px);
}

/* ===== MODAL (Artwork details) ===== */
.modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 2000;
}
.modal.active{ opacity:1; visibility:visible; }

.modal::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(4px);
}

.modal-box{
  position:relative;
  z-index: 1;
  width: min(1100px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow:auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(12,12,12,0.55);
  box-shadow: var(--shadow);
  padding: 38px 34px;
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .35s ease;
}
.modal.active .modal-box{
  transform:none;
  opacity: 1;
}

.modal-close{
  position: sticky;
  top: 0;
  display:flex;
  justify-content:flex-end;
  margin-bottom: 14px;
}
.modal-close button{
  border:0;
  background: transparent;
  color: rgba(178,137,113,.9);
  font-size: 26px;
  cursor:pointer;
  opacity:.85;
}
.modal-close button:hover{ opacity: 1; }

.artwork-layout{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 46px;
  align-items:start;
}

@media (max-width: 900px){
  .artwork-layout{
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.artwork-title{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  letter-spacing: .10em;
  font-size: clamp(22px, 3vw, 42px);
  color: rgba(178,137,113,.95);
}
.artwork-price{
  margin: 0 0 18px;
  color: rgba(178,137,113,.95);
  letter-spacing: .10em;
  font-size: 16px;
}

.artwork-small{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(240,237,234,.72);
}

.kv{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 90px 1fr;
  row-gap: 10px;
  column-gap: 14px;
  font-size: 14px;
  color: rgba(240,237,234,.72);
}
.kv .k{
  color: rgba(240,237,234,.55);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
}
.kv .v{
  color: rgba(240,237,234,.82);
}

.modal-cta{
  margin-top: 26px;
}
.modal-cta .cta{
  width: 100%;
  border-radius: 999px;
  padding: 14px 18px;
  border: 1px solid rgba(178,137,113,.65);
  background: rgba(178,137,113,.14);
  color: rgba(240,237,234,.92);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  cursor:pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.modal-cta .cta:hover{
  transform: translateY(-2px);
  background: rgba(178,137,113,.22);
  border-color: rgba(178,137,113,.95);
}
.modal-cta .note{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(240,237,234,.55);
}

.artwork-image img{
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
}

/* ===== ANIMATION ===== */
.fade-in{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible{
  opacity:1;
  transform:none;
}

@keyframes heroFade{
  from{opacity:0; transform: translateY(16px);}
  to{opacity:1; transform:none;}
}

/* ===== SOLD SECTION ===== */
.sold-divider{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 40px;
  text-align: center;
}

.sold-divider .line{
  height: 1px;
  width: 100%;
  margin: 0 auto 34px;
  background: linear-gradient(to right,
    transparent,
    rgba(178,137,113,.35),
    transparent
  );
}

.sold-title{
  margin: 0 0 8px;
  font-size: clamp(20px, 2.5vw, 32px);
  color: rgba(240,237,234,.92);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sold-sub{
  margin: 0;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240,237,234,.55);
}

/* ===== CONTACT MODAL (3 OPTIONS) ===== */
.contact-modal{
  position: fixed;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 3000;
}
.contact-modal.active{
  opacity:1;
  visibility:visible;
}
.contact-modal::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(4px);
}
.contact-box{
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 28px));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(12,12,12,0.60);
  box-shadow: var(--shadow);
  padding: 26px 22px 22px;
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .35s ease;
}
.contact-modal.active .contact-box{
  transform:none;
  opacity: 1;
}
.contact-top{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}
.contact-title{
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  letter-spacing: .10em;
  font-size: 18px;
  color: rgba(240,237,234,.92);
}
.contact-close{
  border:0;
  background: transparent;
  color: rgba(178,137,113,.9);
  font-size: 26px;
  cursor:pointer;
  opacity:.85;
}
.contact-close:hover{ opacity:1; }

.contact-desc{
  margin: 0 0 16px;
  color: rgba(240,237,234,.70);
  font-size: 14px;
  line-height: 1.6;
}

.contact-actions{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.contact-action{
  width: 100%;
  border-radius: 999px;
  padding: 14px 16px;
  border: 1px solid rgba(178,137,113,.55);
  background: rgba(0,0,0,.20);
  color: rgba(240,237,234,.92);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  cursor:pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.contact-action:hover{
  transform: translateY(-2px);
  border-color: rgba(178,137,113,.95);
  background: rgba(178,137,113,.14);
}
.contact-action.primary{
  background: rgba(178,137,113,.16);
}
.contact-action.primary:hover{
  background: rgba(178,137,113,.22);
}

/* ===== FAQ MODAL CONTENT ===== */
.faq-modal{
  max-width: 900px;
  margin: 0 auto;
}

.faq-modal-title{
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: .12em;
}

.faq-modal-desc{
  margin: 0 0 22px;
  color: rgba(240,237,234,.70);
  line-height: 1.65;
}

.faq-more{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(178,137,113,.18);
}

.faq-more-btn{
  width: 100%;
}

.faq-more-hidden{
  display: none;
  margin-top: 14px;
  gap: 12px;
}

.faq-more-hidden.show{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px){
  .fade-in{
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== COOKIE BANNER (gold/black) ===== */
.cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 5000;
  border: 1px solid rgba(178,137,113,.28);
  background: rgba(12,12,12,0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 120px rgba(0,0,0,.75);
  border-radius: 18px;
  padding: 16px 16px;
  display: none;
}
.cookie-banner.show{ display:block; }

.cookie-inner{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-text{
  flex: 1 1 380px;
  color: rgba(240,237,234,.78);
  font-size: 13px;
  line-height: 1.55;
}
.cookie-text a{
  color: rgba(178,137,113,.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(178,137,113,.35);
}
.cookie-text a:hover{
  border-bottom-color: rgba(178,137,113,.9);
}

.cookie-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions .btn{
  min-width: auto;
  padding: 12px 16px;
  font-size: 11px;
}

/* small screens */
@media (max-width: 520px){
  .cookie-banner{ left: 12px; right: 12px; bottom: 12px; }
  .cookie-actions{ width:100%; }
  .cookie-actions .btn{ width:100%; }
}